diff options
author | 2019-06-25 09:12:04 -0700 | |
---|---|---|
committer | 2019-06-25 16:25:13 +0000 | |
commit | 1e52a07b4de0f000028e55c332aa46495f60879c (patch) | |
tree | 1eb7dfdce749461c5a8997cbde49ed6d0fea2aa0 /libdexfile/dex/dex_file_reference.h | |
parent | e0ce8bf743b7fc5816bc4045716d75378ce3b654 (diff) |
Correct Indicies -> Indices
This is a misspelling that is somewhat common in art/.
Fix up all the instances I could find.
Test: ./test.py --host
Change-Id: I0a5def6e4126cf4e61efb0619bd59eb45ba7f324
Diffstat (limited to 'libdexfile/dex/dex_file_reference.h')
-rw-r--r-- | libdexfile/dex/dex_file_reference.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdexfile/dex/dex_file_reference.h b/libdexfile/dex/dex_file_reference.h index 3ac778121a..1c6ba13968 100644 --- a/libdexfile/dex/dex_file_reference.h +++ b/libdexfile/dex/dex_file_reference.h @@ -39,7 +39,7 @@ class DexFileReference { }; }; -// Default comparators, compares the indicies, not the backing data. +// Default comparators, compares the indices, not the backing data. inline bool operator<(const DexFileReference& a, const DexFileReference& b) { return DexFileReference::Comparator()(a, b); } |