You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/07/15 13:48:04 UTC

svn commit: r1361690 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java

Author: tn
Date: Sun Jul 15 11:48:04 2012
New Revision: 1361690

URL: http://svn.apache.org/viewvc?rev=1361690&view=rev
Log:
Fix javadoc.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java?rev=1361690&r1=1361689&r2=1361690&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java Sun Jul 15 11:48:04 2012
@@ -380,7 +380,7 @@ public class ListUtils {
      * Date date = lazy.get(3);
      * </pre>
      *
-     * After the above code is executed, <code>date</code> will contain
+     * After the above code is executed, <code>date</code> will refer to
      * a new <code>Date</code> instance.  Furthermore, that <code>Date</code>
      * instance is the fourth element in the list.  The first, second, 
      * and third element are all set to <code>null</code>.