summaryrefslogtreecommitdiffstats
path: root/core/java/android/util/SparseIntArray.java
diff options
context:
space:
mode:
authorNewton Allen <newt@google.com>2013-11-21 13:27:10 -0800
committerNewton Allen <newt@google.com>2013-11-21 23:12:32 +0000
commit2802965888566244d8642ba32775b7b2a3cec655 (patch)
tree8ab5972339f6df8a1a69025abee733968d18bccd /core/java/android/util/SparseIntArray.java
parent43eea0a640db07c4da05146f7e68eae567592bdb (diff)
downloadframeworks_base-2802965888566244d8642ba32775b7b2a3cec655.zip
frameworks_base-2802965888566244d8642ba32775b7b2a3cec655.tar.gz
frameworks_base-2802965888566244d8642ba32775b7b2a3cec655.tar.bz2
Fix javadoc typo in SparseArray.
Change-Id: Ie69b2cf96dae95b6ebe7b7797d3755749aec9f35 (cherry picked from commit ebb47950f21d3c41955a591000dfb1f195e746fe)
Diffstat (limited to 'core/java/android/util/SparseIntArray.java')
-rw-r--r--core/java/android/util/SparseIntArray.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/util/SparseIntArray.java b/core/java/android/util/SparseIntArray.java
index 0835cb0..4f5ca07 100644
--- a/core/java/android/util/SparseIntArray.java
+++ b/core/java/android/util/SparseIntArray.java
@@ -37,7 +37,7 @@ import com.android.internal.util.ArrayUtils;
* {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
* <code>keyAt(int)</code> with ascending values of the index will return the
* keys in ascending order, or the values corresponding to the keys in ascending
- * order in the case of <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
*/
public class SparseIntArray implements Cloneable {
private int[] mKeys;