Skip to content

Commit 0fd931b

Browse files
committed
spell avoids correctly
1 parent 1c39356 commit 0fd931b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/jsutils/after.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Async Helper Function that avoides `.then()`
2+
* Async Helper Function that avoids `.then()`
33
*
44
* It is faster to await a promise prior to returning it from an async function
55
* than to return a promise with `.then()`.

src/jsutils/afterMaybeAsync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { isPromise } from './isPromise.js';
22
import type { PromiseOrValue } from './PromiseOrValue.js';
33

44
/**
5-
* Async Helper Function that avoides `.then()`
5+
* Async Helper Function that avoids `.then()`
66
*
77
* It is faster to await a promise prior to returning it from an async function
88
* than to return a promise with `.then()`.

src/jsutils/catchAfter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Async Helper Function that avoides `.then()`
2+
* Async Helper Function that avoids `.then()`
33
*
44
* It is faster to await a promise prior to returning it from an async function
55
* than to return a promise with `.then()`.

src/jsutils/tryAfter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Async Helper Function that avoides `.then()`
2+
* Async Helper Function that avoids `.then()`
33
*
44
* It is faster to await a promise prior to returning it from an async function
55
* than to return a promise with `.then()`.

0 commit comments

Comments
 (0)