Skip to content

Commit

Permalink
Fixed Javadoc misprint in CArrayUtils.collectIterable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Colby Skeggs committed Jul 31, 2015
1 parent e6c2787 commit f500b09
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions CommonChickenRuntimeEngine/src/ccre/util/CArrayUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public static void sort(Integer[] list) {
* Collect everything yielded by an iterable into a CArrayList.
*
* @param elements the iterable to collect from.
* @param <T> the element type of the iterable and therefore the resulting collection.
* @return the resulting collection, as a CArrayList.
*/
public static <T> CArrayList<T> collectIterable(Iterable<T> elements) {
Expand Down

0 comments on commit f500b09

Please sign in to comment.