aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com
diff options
context:
space:
mode:
authorGravatar gregce <gregce@google.com>2017-12-20 16:24:25 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-12-20 16:25:43 -0800
commite98f3442e43386de421daf1b7430139f2a4a0441 (patch)
tree66ed46d64e3df87b6f311d0cc590dc306b689608 /src/test/java/com
parent29a96822a3bc5a81094285a995d905a074ef5714 (diff)
Correct typos found by the linter.
PiperOrigin-RevId: 179748374
Diffstat (limited to 'src/test/java/com')
-rw-r--r--src/test/java/com/google/devtools/build/lib/syntax/util/EvaluationTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/syntax/util/EvaluationTestCase.java b/src/test/java/com/google/devtools/build/lib/syntax/util/EvaluationTestCase.java
index 900d7ea655..0e1b3a5264 100644
--- a/src/test/java/com/google/devtools/build/lib/syntax/util/EvaluationTestCase.java
+++ b/src/test/java/com/google/devtools/build/lib/syntax/util/EvaluationTestCase.java
@@ -58,7 +58,7 @@ public class EvaluationTestCase {
}
protected void beforeInitialization() throws Exception {
- // This method exists so that it can be overriden in MakeEnvironmentTest.
+ // This method exists so that it can be overridden in MakeEnvironmentTest.
// The problem is that MakeEnvironmentTest's initialization code (setting up makeEnvBuilder)
// needs to run before initialize(), otherwise some tests fail with an NPE.
// Consequently, we need this hack to ensure the right order of methods.