Skip to content

Commit f4850a3

Browse files
hulkishSimenB
authored andcommitted
chore(docs): fixed typo (#142)
1 parent 97a5fce commit f4850a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/rules/expect-expect.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ option:
5353
import { expectSaga } from 'redux-saga-test-plan';
5454
import { addSaga } from '../src/sagas';
5555

56-
test('returns sum', () => {
56+
test('returns sum', () =>
5757
expectSaga(addSaga, 1, 1)
5858
.returns(2)
5959
.run();
60-
});
60+
);
6161
```
6262

6363
Examples of **correct** code for the
@@ -69,9 +69,9 @@ Examples of **correct** code for the
6969
import { expectSaga } from 'redux-saga-test-plan';
7070
import { addSaga } from '../src/sagas';
7171

72-
test('returns sum', () => {
72+
test('returns sum', () =>
7373
expectSaga(addSaga, 1, 1)
7474
.returns(2)
7575
.run();
76-
});
76+
);
7777
```

0 commit comments

Comments
 (0)