Merge pull request #12003 from eltociear/patch-7

Fix typo in callback_logger.js
This commit is contained in:
Denilson
2022-04-11 14:04:46 -04:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@
## v2.7, 2022-03-24
#### Highlights
* Bump node version to 14.19.1
* TailwindCSS 3.x support
* Typescript `4.5.4` upgrade
* New core package: `accounts-2fa`

View File

@@ -1,7 +1,7 @@
// This file allows you to write tests that expect certain callbacks to be
// called in certain orders, or optionally in groups where the order does not
// matter. It can be set up in either a synchronous manner, so that each
// callback must have already occured before you call expectResult & its ilk, or
// callback must have already occurred before you call expectResult & its ilk, or
// in an asynchronous manner, so that the logger yields and waits a reasonable
// timeout for the callback. Because we're using Node Fibers to yield & start
// ourselves, the asynchronous version is only available on the server.