aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.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/main/java/com/google/devtools/build/lib/vfs/AbstractFileSystem.java
parent3b16a284b202e410d3b1bc9b14a578773e530b18 (diff)
Typo fixes in markdown and javadoc as suggested by intellij typo inspection.
-- MOS_MIGRATED_REVID=128476121
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 86d90534fe..8538cda9b7 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
@@ -37,7 +37,7 @@ abstract class AbstractFileSystem extends FileSystem {
@Override
protected InputStream getInputStream(Path path) throws IOException {
- // This loop is a workaround for an apparent bug in FileInputStrean.open, which delegates
+ // This loop is a workaround for an apparent bug in FileInputStream.open, which delegates
// ultimately to JVM_Open in the Hotspot JVM. This call is not EINTR-safe, so we must do the
// retry here.
for (;;) {