Skip to content

Commit 9da964f

Browse files
committed
Remove extra semicolon (the irony)
1 parent 69236c9 commit 9da964f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/tslint/typeOperatorSpacingRule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
export class Rule extends Lint.Rules.AbstractRule {
6-
public static FAILURE_STRING = "Place spaces around the '|' and '&' type operators";;
6+
public static FAILURE_STRING = "Place spaces around the '|' and '&' type operators";
77

88
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
99
return this.applyWithWalker(new TypeOperatorSpacingWalker(sourceFile, this.getOptions()));

0 commit comments

Comments
 (0)