Skip to content

Commit

Permalink
Addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert (Bobby) Evans committed Mar 16, 2017
1 parent 1c90637 commit b000a98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public byte[] slurp(File location) throws IOException {
*/
public void createSymlink(File link, File target) throws IOException {
if (_symlinksDisabled) {
throw new IOException("Symlinks have been disabled, this hsould not be called");
throw new IOException("Symlinks have been disabled, this should not be called");
}
Path plink = link.toPath().toAbsolutePath();
Path ptarget = target.toPath().toAbsolutePath();
Expand Down

0 comments on commit b000a98

Please sign in to comment.