From 855b4f27d40f3ca194cddd607a1e37d3b2a485c9 Mon Sep 17 00:00:00 2001 From: Tom Conkling Date: Thu, 17 Apr 2008 19:11:12 +0000 Subject: [PATCH] copy-paste typo fix git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5003 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/ArrayUtil.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/util/ArrayUtil.as b/src/as/com/threerings/util/ArrayUtil.as index 5f40bd09d..2ead45f15 100644 --- a/src/as/com/threerings/util/ArrayUtil.as +++ b/src/as/com/threerings/util/ArrayUtil.as @@ -120,10 +120,10 @@ public class ArrayUtil /** * Returns the first item in the array for which the predicate function returns true, or - * -1 if no such item was found. The predicate function should be of type: + * null if no such item was found. The predicate function should be of type: * function (element :*) :Boolean { } * - * @return the matching element, or null if no matching element was found + * @return the matching element, or null if no matching element was found. */ public static function findIf (arr :Array, predicate :Function) :* {