aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2016-07-26 15:52:48 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-07-27 11:14:46 +0000
commit89100870293e5ba00eddcf470a1dbb6c3ca309b8 (patch)
tree735b3e507310620c2cb57a1e51394da5bdcbd302 /src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java
parent3b16a284b202e410d3b1bc9b14a578773e530b18 (diff)
Typo fixes in markdown and javadoc as suggested by intellij typo inspection.
-- MOS_MIGRATED_REVID=128476121
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java b/src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java
index c22f5eb68a..7a3982ed12 100644
--- a/src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java
+++ b/src/test/java/com/google/devtools/build/lib/concurrent/AbstractQueueVisitorTest.java
@@ -373,7 +373,7 @@ public class AbstractQueueVisitorTest {
latch1.countDown();
try {
// Interruption is expected during a sleep. There is no sense in fail or assert call
- // because exception is going to be swallowed inside AbstractQueueVisitior.
+ // because exception is going to be swallowed inside AbstractQueueVisitor.
// We are using wasInterrupted flag to assert in the end of test.
Thread.sleep(1000);
} catch (InterruptedException e) {