Author: rwhitcomb
Date: Mon Feb 15 21:49:54 2021
New Revision: 1886549

URL: http://svn.apache.org/viewvc?rev=1886549&view=rev
Log:
Tweak the Javadoc comments in Span.

Modified:
    pivot/trunk/wtk/src/org/apache/pivot/wtk/Span.java

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Span.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Span.java?rev=1886549&r1=1886548&r2=1886549&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Span.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Span.java Mon Feb 15 21:49:54 2021
@@ -26,8 +26,9 @@ import org.apache.pivot.util.Utils;
 
 /**
  * Class representing a range of integer values. The range includes all values
- * in the interval <i>[start, end]</i>. Values may be negative, and the value 
of
- * {@code start} may be less than or equal to the value of {@code end}.
+ * in the interval <i>[start, end]</i> (inclusive). Values may be negative,
+ * and the value of {@code start} may be less than or equal to the value of
+ * {@code end}.
  */
 public final class Span {
     public final int start;


Reply via email to