Skip to content

Commit

Permalink
fix: remove unnecessary backticks on raw strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ddurschlag6river committed Mar 5, 2019
1 parent 7b11312 commit 94ff447
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/nodes/LatchedSequence.ts
Expand Up @@ -15,6 +15,6 @@ export class LatchedSequence<S extends BlueshellState, E> extends Sequence<S, E>
}

get symbol(): string {
return `⍈`;
return '⍈';
}
}
2 changes: 1 addition & 1 deletion lib/nodes/Success.ts
Expand Up @@ -4,7 +4,7 @@ import {resultCodes as rc} from '../utils/resultCodes';

export class Success<S extends BlueshellState, E> extends Base<S, E> {
constructor(
name = `Success`
name = 'Success'
) {
super(name);
}
Expand Down

0 comments on commit 94ff447

Please sign in to comment.