Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Feb 23, 2019
1 parent e0c3d28 commit a7b6b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-plugin/docs/rules/prefer-includes.md
Expand Up @@ -24,7 +24,7 @@ let readonlyArray: ReadonlyArray<any>;
let typedArray: UInt8Array;
let userDefined: {
indexOf(x: any): number;
includes(x: any): boolean
includes(x: any): boolean;
};

str.indexOf(value) !== -1;
Expand All @@ -45,7 +45,7 @@ let readonlyArray: ReadonlyArray<any>;
let typedArray: UInt8Array;
let userDefined: {
indexOf(x: any): number;
includes(x: any): boolean
includes(x: any): boolean;
};
let mismatchExample: {
indexOf(x: any, fromIndex?: number): number;
Expand Down

0 comments on commit a7b6b00

Please sign in to comment.