Skip to content

Commit 990f069

Browse files
authored
Fix typo in use-t-throws-async-well.md (#355)
1 parent aec874b commit 990f069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/use-t-throws-async-well.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test('main', t => {
2626
```js
2727
import test from 'ava';
2828

29-
test('main', t => {
29+
test('main', async t => {
3030
await t.throwsAsync(somePromise);
3131
await t.notThrowsAsync(somePromise);
3232
const p = t.throwsAsync(somePromise);

0 commit comments

Comments
 (0)