diff --git a/scripts/circleci/download_devtools_regression_build.js b/scripts/circleci/download_devtools_regression_build.js index 6a1aa23cb9cc5..d8b7c88a0a7eb 100755 --- a/scripts/circleci/download_devtools_regression_build.js +++ b/scripts/circleci/download_devtools_regression_build.js @@ -75,7 +75,7 @@ async function downloadRegressionBuild() { // For React versions earlier than 18.0.0, we explicitly scheduler v0.20.1, which // is the first version that has unstable_mock, which DevTools tests need, but also // has Scheduler.unstable_trace, which, although we don't use in DevTools tests - // is imported by older React versions and will break if it's not ther + // is imported by older React versions and will break if it's not there if (semver.lte(semver.coerce(version).version, '18.0.0')) { await exec(`npm install --prefix ${REGRESSION_FOLDER} scheduler@0.20.1`); } diff --git a/scripts/jest/jest-cli.js b/scripts/jest/jest-cli.js index b47731d4dbf46..4aaf59ba728f8 100644 --- a/scripts/jest/jest-cli.js +++ b/scripts/jest/jest-cli.js @@ -112,7 +112,7 @@ const argv = yargs }, sourceMaps: { describe: - 'Enable inline source maps when tranforming source files with Jest. Useful for debugging, but makes it slower.', + 'Enable inline source maps when transforming source files with Jest. Useful for debugging, but makes it slower.', type: 'boolean', default: false, },