diff --git a/scripts/tslint/typeOperatorSpacingRule.ts b/scripts/tslint/typeOperatorSpacingRule.ts index 4143f273dd1..3519936dd63 100644 --- a/scripts/tslint/typeOperatorSpacingRule.ts +++ b/scripts/tslint/typeOperatorSpacingRule.ts @@ -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()));