Remove extra semicolon (the irony)

This commit is contained in:
Ryan Cavanaugh 2015-10-22 11:39:41 -07:00
parent 69236c9be8
commit 9da964f019

View File

@ -3,7 +3,7 @@
export class Rule extends Lint.Rules.AbstractRule {
public static FAILURE_STRING = "Place spaces around the '|' and '&' type operators";;
public static FAILURE_STRING = "Place spaces around the '|' and '&' type operators";
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
return this.applyWithWalker(new TypeOperatorSpacingWalker(sourceFile, this.getOptions()));