Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
meganemura committed Dec 30, 2019
1 parent a74b67f commit d6d987d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions guide/10_your_first_rule/README.ja.md
Expand Up @@ -46,7 +46,7 @@ import rule from "./no-literal";

const tester = new RuleTester({ parserOptions: { ecmaVersion: 2015 } });

tester.run("no-reteral", rule, {
tester.run("no-literal", rule, {
valid: [
{ code: `let x` },
],
Expand All @@ -69,7 +69,7 @@ $ npm test

```text
PASS src/rules/no-literal.test.ts
no-reteral
no-literal
valid
✓ let x (29ms)
invalid
Expand Down
4 changes: 2 additions & 2 deletions guide/10_your_first_rule/README.md
Expand Up @@ -46,7 +46,7 @@ import rule from "./no-literal";

const tester = new RuleTester({ parserOptions: { ecmaVersion: 2015 } });

tester.run("no-reteral", rule, {
tester.run("no-literal", rule, {
valid: [
{ code: `let x` },
],
Expand All @@ -69,7 +69,7 @@ Can you see the following console output?

```text
PASS src/rules/no-literal.test.ts
no-reteral
no-literal
valid
✓ let x (29ms)
invalid
Expand Down
2 changes: 1 addition & 1 deletion src/rules/no-literal.test.ts
Expand Up @@ -4,7 +4,7 @@ import rule from "./no-literal";

const tester = new RuleTester({ parserOptions: { ecmaVersion: 2015 } });

tester.run("no-reteral", rule, {
tester.run("no-literal", rule, {
valid: [
{ code: `let x` },
],
Expand Down

0 comments on commit d6d987d

Please sign in to comment.