Edited wiki page DeveloperFAQ through web user interface.
diff --git a/DeveloperFAQ.wiki b/DeveloperFAQ.wiki
index f437df7..ad23081 100644
--- a/DeveloperFAQ.wiki
+++ b/DeveloperFAQ.wiki
@@ -58,7 +58,7 @@
 
 * How do I give back a verified identify when writing my own authenticateUser method?
 
-Use the callback passed to [http://documentation.plexi.googlecode.com/git-history/v4.0.1/javadoc/com/google/enterprise/adaptor/AuthnAuthority.Callback.html#userAuthenticated(com.sun.net.httpserver.HttpExchange, com.google.enterprise.adaptor.AuthnIdentity) authenticateUser()] .  This callback will result in sending verified identity information to the GSA via SAML (the SAML is handled by the library). Note that the 2nd argument of this callback is an AuthnIdentity.  The AuthnIdentity is where you can provide the user name and groups which have been verified. Here is an example of an AuthnIdentity that you can provide to the callback:
+Use the callback passed to [http://documentation.plexi.googlecode.com/git-history/v4.0.1/javadoc/com/google/enterprise/adaptor/AuthnAuthority.Callback.html#userAuthenticated(com.sun.net.httpserver.HttpExchange,%20com.google.enterprise.adaptor.AuthnIdentity) authenticateUser()] .  This callback will result in sending verified identity information to the GSA via SAML (the SAML is handled by the library). Note that the 2nd argument of this callback is an !AuthnIdentity.  The !AuthnIdentity is where you can provide the user name and groups which have been verified. Here is an example of an !AuthnIdentity that you can provide to the callback:
 {{{
       AuthnIdentity identity = new AuthnIdentity() {