Skip to content

Commit 0d7bbd5

Browse files
authored
Fix typo in common pitfalls doc
1 parent e81f413 commit 0d7bbd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/08-common-pitfalls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ test('increment twice', async t => {
112112
});
113113
```
114114

115-
Concurrent tests allow for asynchronous tests to execute more quickly, but if they rely on shared state you this may lead to unexpected test failures. If the shared state cannot be avoided, you can execute your tests serially:
115+
Concurrent tests allow for asynchronous tests to execute more quickly, but if they rely on shared state this may lead to unexpected test failures. If the shared state cannot be avoided, you can execute your tests serially:
116116

117117
```js
118118
import test from 'ava';

0 commit comments

Comments
 (0)