aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java
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/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java
parent29a96822a3bc5a81094285a995d905a074ef5714 (diff)
Correct typos found by the linter.
PiperOrigin-RevId: 179748374
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java b/src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java
index ef1946bb8e..743bf37dd0 100644
--- a/src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java
+++ b/src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java
@@ -123,7 +123,7 @@ abstract class AbstractFileSystem extends FileSystem {
public int read() throws IOException {
long startTime = Profiler.nanoTimeMaybe();
try {
- // Note that FileInputStream#read() does *not* call any of our overriden methods,
+ // Note that FileInputStream#read() does *not* call any of our overridden methods,
// so there's no concern with double counting here.
return super.read();
} finally {