You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by ka...@apache.org on 2010/07/01 08:14:12 UTC

svn commit: r959525 - /incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/servlet/IniShiroFilter.java

Author: kaosko
Date: Thu Jul  1 06:14:12 2010
New Revision: 959525

URL: http://svn.apache.org/viewvc?rev=959525&view=rev
Log:
FIXED - SHIRO-181: Typo in IniShiroFilter javadoc 
https://issues.apache.org/jira/browse/SHIRO-181
- changed all occurrences of some.pkg to example.pkg

Modified:
    incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/servlet/IniShiroFilter.java

Modified: incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/servlet/IniShiroFilter.java
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/servlet/IniShiroFilter.java?rev=959525&r1=959524&r2=959525&view=diff
==============================================================================
--- incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/servlet/IniShiroFilter.java (original)
+++ incubator/shiro/trunk/web/src/main/java/org/apache/shiro/web/servlet/IniShiroFilter.java Thu Jul  1 06:14:12 2010
@@ -63,7 +63,7 @@ import java.util.Map;
  * #
  * # myRealm = example.pkg.security.MyRealm
  * #
- * # This would instantiate the some.pkg.security.MyRealm class with a default no-arg constructor and inject it into
+ * # This would instantiate the example.pkg.security.MyRealm class with a default no-arg constructor and inject it into
  * # the SecurityManager.  More than one realm can be defined if needed.  You can create graphs and reference
  * # other beans ('$' bean reference notation) while defining Realms and other objects:
  * #
@@ -86,7 +86,7 @@ import java.util.Map;
  * # logic.  Then you can declare the implementation here instead.  The realms it returns will be injected in to the
  * # SecurityManager just as the individual Realms are.  For example:
  * #
- * # aRealmFactory = some.pkg.ClassThatImplementsRealmFactory
+ * # aRealmFactory = example.pkg.ClassThatImplementsRealmFactory
  * #
  * # --- SessionManager properties ---
  * #