Skip to content

Commit 90a1e6f

Browse files
author
Yong Bakos
committed
Correcting descriptions of reverse method for FloatList, IntList and StringList.
Fixes processing/processing-docs#50
1 parent 25d5f31 commit 90a1e6f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/processing/data/FloatList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ public void swap(int a, int b) {
601601

602602
/**
603603
* @webref floatlist:method
604-
* @brief Reverse sort, orders values by first digit
604+
* @brief Reverse the order of the list elements
605605
*/
606606
public void reverse() {
607607
int ii = count - 1;

core/src/processing/data/IntList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ public void swap(int a, int b) {
569569

570570
/**
571571
* @webref intlist:method
572-
* @brief Reverse sort, orders values by first digit
572+
* @brief Reverse the order of the list elements
573573
*/
574574
public void reverse() {
575575
int ii = count - 1;

core/src/processing/data/StringList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ public void swap(int a, int b) {
495495

496496
/**
497497
* @webref stringlist:method
498-
* @brief To come...
498+
* @brief Reverse the order of the list elements
499499
*/
500500
public void reverse() {
501501
int ii = count - 1;

0 commit comments

Comments
 (0)