Skip to content

Commit 3fba14e

Browse files
committed
rule text fix
1 parent de89459 commit 3fba14e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/tslint/noIncrementDecrementRule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as ts from "typescript";
33

44

55
export class Rule extends Lint.Rules.AbstractRule {
6-
public static FAILURE_STRING = "Don't use '++' or '--' operators outside for for loops or statements - prefer '+= 1' and '-= 1'.";
6+
public static FAILURE_STRING = "Don't use '++' or '--' operators outside for loops or statements - prefer '+= 1' and '-= 1'.";
77

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

0 commit comments

Comments
 (0)