Skip to content

Commit 7606363

Browse files
authored
fix(docs): Fix syntax errors padding-around-test-blocks.md (#762)
1 parent 21cef88 commit 7606363

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/rules/padding-around-test-blocks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Examples of **incorrect** code for this rule:
1818

1919
```js
2020
const someText = 'hoge';
21-
test("hoge" () => {});
21+
test("hoge", () => {});
2222
test('foo', () => {});
2323
```
2424

2525
```js
2626
const someText = 'hoge';
27-
it("hoge" () => {});
27+
it("hoge", () => {});
2828
it('foo', () => {});
2929
```
3030

@@ -33,15 +33,15 @@ Examples of **correct** code for this rule:
3333
```js
3434
const someText = 'hoge';
3535

36-
test("hoge" () => {});
36+
test("hoge", () => {});
3737

3838
test('foo', () => {});
3939
```
4040

4141
```js
4242
const someText = 'hoge';
4343

44-
it("hoge" () => {});
44+
it("hoge", () => {});
4545

4646
it('foo', () => {});
4747
```

0 commit comments

Comments
 (0)