diff --git a/core/src/processing/data/FloatList.java b/core/src/processing/data/FloatList.java index 9921cb326..0acb8496d 100644 --- a/core/src/processing/data/FloatList.java +++ b/core/src/processing/data/FloatList.java @@ -601,7 +601,7 @@ public class FloatList implements Iterable { /** * @webref floatlist:method - * @brief Reverse sort, orders values by first digit + * @brief Reverse the order of the list elements */ public void reverse() { int ii = count - 1; diff --git a/core/src/processing/data/IntList.java b/core/src/processing/data/IntList.java index 78775be3f..afa0333fa 100644 --- a/core/src/processing/data/IntList.java +++ b/core/src/processing/data/IntList.java @@ -569,7 +569,7 @@ public class IntList implements Iterable { /** * @webref intlist:method - * @brief Reverse sort, orders values by first digit + * @brief Reverse the order of the list elements */ public void reverse() { int ii = count - 1; diff --git a/core/src/processing/data/StringList.java b/core/src/processing/data/StringList.java index a407265a9..b5ec4bad0 100644 --- a/core/src/processing/data/StringList.java +++ b/core/src/processing/data/StringList.java @@ -495,7 +495,7 @@ public class StringList implements Iterable { /** * @webref stringlist:method - * @brief To come... + * @brief Reverse the order of the list elements */ public void reverse() { int ii = count - 1;