Skip to content

Commit

Permalink
Fix exception message - add missing closing parenthesis
Browse files Browse the repository at this point in the history
Fixes #37

RELNOTES=n/a

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=272510710
  • Loading branch information
Godin authored and cpovirk committed Oct 2, 2019
1 parent 138d1d9 commit 7c8701a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public ParseResult parsePath(String path) {
throw new InvalidPathException(
original,
"Jimfs does not currently support the Windows syntax for a relative path "
+ "on a specific drive (e.g. \"C:foo\\bar\"");
+ "on a specific drive (e.g. \"C:foo\\bar\")");
}

String root;
Expand All @@ -74,7 +74,7 @@ public ParseResult parsePath(String path) {
throw new InvalidPathException(
original,
"Jimfs does not currently support the Windows syntax for an absolute path "
+ "on the current drive (e.g. \"\\foo\\bar\"");
+ "on the current drive (e.g. \"\\foo\\bar\")");
} else {
root = parseDriveRoot(path);
}
Expand Down

0 comments on commit 7c8701a

Please sign in to comment.