You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2013/04/29 02:49:34 UTC

svn commit: r1476873 - /sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-actors.mdtext

Author: dklco
Date: Mon Apr 29 00:49:34 2013
New Revision: 1476873

URL: http://svn.apache.org/r1476873
Log:
Fixing an issue where backticks appear instead of a code tag surrounding the text

Modified:
    sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-actors.mdtext

Modified: sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-actors.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-actors.mdtext?rev=1476873&r1=1476872&r2=1476873&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-actors.mdtext (original)
+++ sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-actors.mdtext Mon Apr 29 00:49:34 2013
@@ -56,5 +56,5 @@ Sling Applications requiring authenticat
 Sling Applications should never directly use any knowledge of any authentication handler or directly call into an authentication handler. This will certainly break the application and cause unexpected behaviour.
 
 <div class="info">
-If you want to know whether a request is authenticated or not, you can inspect the result of the `HttpServletRequest.getAuthType` method: If this method returns `null` the request is not authenticated.
+If you want to know whether a request is authenticated or not, you can inspect the result of the <code>HttpServletRequest.getAuthType</code> method: If this method returns <code>null</code> the request is not authenticated.
 </div>