Correct typo
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 9 Feb 2009 19:56:44 +0000 (19:56 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 9 Feb 2009 19:56:44 +0000 (19:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@742710 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/realm/JAASMemoryLoginModule.java

index 75045b6..e55e419 100644 (file)
@@ -197,7 +197,7 @@ public class JAASMemoryLoginModule extends MemoryRealm implements LoginModule {
         // Add our Principal to the Subject if needed
         if (!subject.getPrincipals().contains(principal)) {
             subject.getPrincipals().add(principal);
-            // Add the roles as additional sudjucts as per the contract with the
+            // Add the roles as additional subjects as per the contract with the
             // JAASRealm
             if (principal instanceof GenericPrincipal) {
                 String roles[] = ((GenericPrincipal) principal).getRoles();