mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
Merge pull request #2662 from ybakos/issue-docs50-reverse
Correcting descriptions of reverse method
This commit is contained in:
@@ -601,7 +601,7 @@ public class FloatList implements Iterable<Float> {
|
||||
|
||||
/**
|
||||
* @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;
|
||||
|
||||
@@ -569,7 +569,7 @@ public class IntList implements Iterable<Integer> {
|
||||
|
||||
/**
|
||||
* @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;
|
||||
|
||||
@@ -495,7 +495,7 @@ public class StringList implements Iterable<String> {
|
||||
|
||||
/**
|
||||
* @webref stringlist:method
|
||||
* @brief To come...
|
||||
* @brief Reverse the order of the list elements
|
||||
*/
|
||||
public void reverse() {
|
||||
int ii = count - 1;
|
||||
|
||||
Reference in New Issue
Block a user