Skip to content

Commit 633ac98

Browse files
Jonathan727halfhp
authored andcommitted
Corrected documentation for OrderedXYSeries (halfhp#42)
1 parent a3c4ca3 commit 633ac98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

androidplot-core/src/main/java/com/androidplot/xy/OrderedXYSeries.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ public interface OrderedXYSeries extends XYSeries {
99
enum XOrder {
1010
/**
1111
* XVals are in strict ascending order such that:
12-
* x(i) > x(i+1) == true
12+
* x(i) < x(i+1) == true
1313
*/
1414
ASCENDING,
1515

1616
/**
1717
* XVals are in strict descending order such that:
18-
* x(i) < x(i+1) == true
18+
* x(i) > x(i+1) == true
1919
*/
2020
DESCENDING,
2121

0 commit comments

Comments
 (0)