You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2008/01/05 02:13:23 UTC

svn commit: r609075 - /velocity/tools/trunk/src/main/java/org/apache/velocity/tools/generic/AbstractLockConfig.java

Author: nbubna
Date: Fri Jan  4 17:13:22 2008
New Revision: 609075

URL: http://svn.apache.org/viewvc?rev=609075&view=rev
Log:
fix a couple javadoc typos

Modified:
    velocity/tools/trunk/src/main/java/org/apache/velocity/tools/generic/AbstractLockConfig.java

Modified: velocity/tools/trunk/src/main/java/org/apache/velocity/tools/generic/AbstractLockConfig.java
URL: http://svn.apache.org/viewvc/velocity/tools/trunk/src/main/java/org/apache/velocity/tools/generic/AbstractLockConfig.java?rev=609075&r1=609074&r2=609075&view=diff
==============================================================================
--- velocity/tools/trunk/src/main/java/org/apache/velocity/tools/generic/AbstractLockConfig.java (original)
+++ velocity/tools/trunk/src/main/java/org/apache/velocity/tools/generic/AbstractLockConfig.java Fri Jan  4 17:13:22 2008
@@ -28,7 +28,7 @@
  * This keeps application or session scoped tools thread-safe in templates,
  * which generally have access to the tool after configuration has happened.
  * <p>
- * Once "locked down", the {@link configure(Map)} may still be called,
+ * Once "locked down", the {@link #configure(Map)} may still be called,
  * however it will do nothing (unless some subclass is foolish enough to
  * override it and not check if {@link #isConfigLocked} before changing
  * configurations.  The proper method for subclasses to override is
@@ -73,7 +73,7 @@
      * If {@link #isConfigLocked} returns {@code true}, then this method
      * does nothing; otherwise, if {@code false}, this will create a new
      * {@link ValueParser} from the specified Map of params and call
-     * {@link configure(ValueParser)} with it.  Then this will check
+     * {@link #configure(ValueParser)} with it.  Then this will check
      * the parameters itself to find out whether or not the configuration
      * for this tool should be locked.  This should be a boolean value
      * under the key {@link #LOCK_CONFIG_KEY}.