chore: fix typo in codebase (#11846)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// @flow
|
||||
// We keep this in a seprate file so that in older node versions, where
|
||||
// We keep this in a separate file so that in older node versions, where
|
||||
// import() isn't supported, we can try/catch around the require() call
|
||||
// when loading this file.
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ const runGenerator = gensync(function* (item) {
|
||||
return yield* item;
|
||||
});
|
||||
|
||||
// This Gensync returns true if the current execution contect is
|
||||
// This Gensync returns true if the current execution context is
|
||||
// asynchronous, otherwise it returns false.
|
||||
export const isAsync = gensync<[], boolean>({
|
||||
sync: () => false,
|
||||
|
||||
Reference in New Issue
Block a user