From fe7d4b8ad5da77d7c1657371a08ded6da651444a Mon Sep 17 00:00:00 2001 From: Yong Bakos Date: Mon, 28 Jul 2014 18:34:26 -0500 Subject: [PATCH] Correcting descriptions of reverse method for FloatList, IntList and StringList. Fixes https://github.com/processing/processing-docs/issues/50 --- core/src/processing/data/FloatList.java | 2 +- core/src/processing/data/IntList.java | 2 +- core/src/processing/data/StringList.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;