You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by re...@apache.org on 2012/04/12 11:52:31 UTC

svn commit: r1325176 - /incubator/stanbol/branches/faceted-browsing/src/main/java/org/apache/stanbol/contenthub/faceted/ConstrainedDocumentSet.java

Author: reto
Date: Thu Apr 12 09:52:31 2012
New Revision: 1325176

URL: http://svn.apache.org/viewvc?rev=1325176&view=rev
Log:
typos.

Modified:
    incubator/stanbol/branches/faceted-browsing/src/main/java/org/apache/stanbol/contenthub/faceted/ConstrainedDocumentSet.java

Modified: incubator/stanbol/branches/faceted-browsing/src/main/java/org/apache/stanbol/contenthub/faceted/ConstrainedDocumentSet.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/branches/faceted-browsing/src/main/java/org/apache/stanbol/contenthub/faceted/ConstrainedDocumentSet.java?rev=1325176&r1=1325175&r2=1325176&view=diff
==============================================================================
--- incubator/stanbol/branches/faceted-browsing/src/main/java/org/apache/stanbol/contenthub/faceted/ConstrainedDocumentSet.java (original)
+++ incubator/stanbol/branches/faceted-browsing/src/main/java/org/apache/stanbol/contenthub/faceted/ConstrainedDocumentSet.java Thu Apr 12 09:52:31 2012
@@ -80,8 +80,8 @@ public interface ConstrainedDocumentSet 
 	 * 
 	 * Implementations may populate the list just when the respective 
 	 * elements are accessed and implement size() to access optimized backend 
-	 * functionality. Clients must thus that the list changes while they are 
-	 * using it. For example the size returned by List.size() may not match 
+	 * functionality. Clients must thus take into account the possibility that 
+	 * the list changes while they are using it. For example the size returned by List.size() may not match 
 	 * the actual number of elements when iterating throw it at a later point 
 	 * in time. The iterate() as well as the subList(int,int) method
 	 * are safe.