Skip to content

Commit

Permalink
spell avoids correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Dec 16, 2022
1 parent 1c39356 commit 0fd931b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/jsutils/after.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Async Helper Function that avoides `.then()`
* Async Helper Function that avoids `.then()`
*
* It is faster to await a promise prior to returning it from an async function
* than to return a promise with `.then()`.
Expand Down
2 changes: 1 addition & 1 deletion src/jsutils/afterMaybeAsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { isPromise } from './isPromise.js';
import type { PromiseOrValue } from './PromiseOrValue.js';

/**
* Async Helper Function that avoides `.then()`
* Async Helper Function that avoids `.then()`
*
* It is faster to await a promise prior to returning it from an async function
* than to return a promise with `.then()`.
Expand Down
2 changes: 1 addition & 1 deletion src/jsutils/catchAfter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Async Helper Function that avoides `.then()`
* Async Helper Function that avoids `.then()`
*
* It is faster to await a promise prior to returning it from an async function
* than to return a promise with `.then()`.
Expand Down
2 changes: 1 addition & 1 deletion src/jsutils/tryAfter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Async Helper Function that avoides `.then()`
* Async Helper Function that avoids `.then()`
*
* It is faster to await a promise prior to returning it from an async function
* than to return a promise with `.then()`.
Expand Down

0 comments on commit 0fd931b

Please sign in to comment.