summaryrefslogtreecommitdiff
path: root/test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java
diff options
context:
space:
mode:
author Alex Light <allight@google.com> 2019-06-25 09:12:04 -0700
committer Alex Light <allight@google.com> 2019-06-25 16:25:13 +0000
commit1e52a07b4de0f000028e55c332aa46495f60879c (patch)
tree1eb7dfdce749461c5a8997cbde49ed6d0fea2aa0 /test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java
parente0ce8bf743b7fc5816bc4045716d75378ce3b654 (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 'test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java')
-rw-r--r--test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java b/test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java
index 2ef7ff7e70..24140465ad 100644
--- a/test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java
+++ b/test/952-invoke-custom/src/TestInvokeCustomWithConcurrentThreads.java
@@ -43,7 +43,7 @@ public class TestInvokeCustomWithConcurrentThreads extends TestBase implements R
// Array of counters for how many times each instantiated call site is called
private static final AtomicInteger[] called = new AtomicInteger[NUMBER_OF_THREADS];
- // Array of call site indicies of which call site a thread invoked
+ // Array of call site indices of which call site a thread invoked
private static final AtomicInteger[] targetted = new AtomicInteger[NUMBER_OF_THREADS];
// Synchronization barrier all threads will wait on in the bootstrap method.