You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2013/01/28 21:59:45 UTC

svn commit: r1439626 - /commons/proper/functor/branches/FUNCTOR-14-mm/core/src/main/java/org/apache/commons/functor/generator/range/Range.java

Author: mbenson
Date: Mon Jan 28 20:59:45 2013
New Revision: 1439626

URL: http://svn.apache.org/viewvc?rev=1439626&view=rev
Log:
per http://en.wikipedia.org/wiki/Interval_%28mathematics%29, 'unbounded' is not synonymous with 'open'; both 'open' and 'closed' are 'bounded.'  If this can be proven incorrect I'm only too happy to retract this commit.

Modified:
    commons/proper/functor/branches/FUNCTOR-14-mm/core/src/main/java/org/apache/commons/functor/generator/range/Range.java

Modified: commons/proper/functor/branches/FUNCTOR-14-mm/core/src/main/java/org/apache/commons/functor/generator/range/Range.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/branches/FUNCTOR-14-mm/core/src/main/java/org/apache/commons/functor/generator/range/Range.java?rev=1439626&r1=1439625&r2=1439626&view=diff
==============================================================================
--- commons/proper/functor/branches/FUNCTOR-14-mm/core/src/main/java/org/apache/commons/functor/generator/range/Range.java (original)
+++ commons/proper/functor/branches/FUNCTOR-14-mm/core/src/main/java/org/apache/commons/functor/generator/range/Range.java Mon Jan 28 20:59:45 2013
@@ -20,8 +20,7 @@ import java.util.Collection;
  * Represent an interval of elements that varies from the <b>left limit</b>
  * to the <b>right limit</b>. Each limit in this range is an {@link Endpoint
  * Endpoint}. The left and the right limits can be <b>inclusive</b>
- * (<b>bounded</b>, <b>closed</b>) or <b>exclusive</b> (<b>unbounded</b>,
- * <b>open</b>).
+ * (<b>closed</b>) or <b>exclusive</b> (<b>open</b>).
  * <p>
  * The difference between each element within this range is called <b>step</b>.
  * The step can be positive or negative, displaying whether the range elements