From f500b096959e305f9c4c6aad4a858639cbaeb49b Mon Sep 17 00:00:00 2001 From: Colby Skeggs Date: Thu, 30 Jul 2015 22:47:03 -0700 Subject: [PATCH] Fixed Javadoc misprint in CArrayUtils.collectIterable. --- CommonChickenRuntimeEngine/src/ccre/util/CArrayUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/CommonChickenRuntimeEngine/src/ccre/util/CArrayUtils.java b/CommonChickenRuntimeEngine/src/ccre/util/CArrayUtils.java index f404d9a3..7216ec2f 100644 --- a/CommonChickenRuntimeEngine/src/ccre/util/CArrayUtils.java +++ b/CommonChickenRuntimeEngine/src/ccre/util/CArrayUtils.java @@ -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 the element type of the iterable and therefore the resulting collection. * @return the resulting collection, as a CArrayList. */ public static CArrayList collectIterable(Iterable elements) {