Update src/utils/Singleflight.ts to support English

Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
pull/21833/head
Travis Ralston 2021-04-19 10:13:22 -06:00 committed by GitHub
parent d23f66bb47
commit 20586e52bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const keyMap = new EnhancedMap<Object, EnhancedMap<string, unknown>>();
* to disable a button, however it would be capable of returning a Promise
* from the first call.
*
* The result of the function call are cached indefinitely, just in case a
* The result of the function call is cached indefinitely, just in case a
* second call comes through late. There are various functions named "forget"
* to have the cache be cleared of a result.
*