Skip to content

Commit

Permalink
Remove errant semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
maprules1000 committed Apr 11, 2019
1 parent ab756dc commit 956bed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default class Snapshot extends PercyCommand {

private cleanTrailingSlash(input: string) {
if (input.substr(-1) === '/' || input.substr(-1) === '\\') {
return input.substr(0, input.length - 1);
return input.substr(0, input.length - 1)
}
return input
}
Expand Down

0 comments on commit 956bed5

Please sign in to comment.