Merge pull request #2662 from ybakos/issue-docs50-reverse

Correcting descriptions of reverse method
This commit is contained in:
Ben Fry
2014-07-29 05:00:49 -04:00
3 changed files with 3 additions and 3 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;