OSDN Git Service

Fix typo: s/first/last
authorDmitry Suzdalev <dimsuz@gmail.com>
Tue, 29 Jan 2013 22:54:12 +0000 (02:54 +0400)
committerDmitry Suzdalev <dimsuz@gmail.com>
Tue, 29 Jan 2013 22:54:12 +0000 (02:54 +0400)
gdx/src/com/badlogic/gdx/utils/Array.java

index b4a5e19..cea779a 100644 (file)
@@ -190,7 +190,7 @@ public class Array<T> implements Iterable<T> {
         * Returns an index of last occurrence of value in array or -1 if no such value exists.\r
         * Search is started from the end of an array.\r
         * @param identity If true, == comparison will be used. If false, .equals() comparison will be used.\r
-        * @return An index of first occurrence of value in array or -1 if no such value exists\r
+        * @return An index of last occurrence of value in array or -1 if no such value exists\r
         */\r
        public int lastIndexOf (T value, boolean identity) {\r
                T[] items = this.items;\r