Skip to content

Commit 7c0dfef

Browse files
minho42mrmckeb
authored andcommitted
Fix various typos (#7355)
1 parent 00b5fa9 commit 7c0dfef

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG-1.x.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ yarn add --exact [email protected]
482482

483483
- [#3150](https://github.com/facebook/create-react-app/pull/3150) Remove an useless negation in `registerServiceWorker.js`. ([@dunglas](https://github.com/dunglas))
484484
- [#3158](https://github.com/facebook/create-react-app/pull/3158) Remove `output.path` from dev webpack config. ([@nikolas](https://github.com/nikolas))
485-
- [#3281](https://github.com/facebook/create-react-app/pull/3281) Add a workaround for Uglify incompatiblity with Safari 10.0 in the future. ([@satyavh](https://github.com/satyavh))
485+
- [#3281](https://github.com/facebook/create-react-app/pull/3281) Add a workaround for Uglify incompatibility with Safari 10.0 in the future. ([@satyavh](https://github.com/satyavh))
486486
- [#3146](https://github.com/facebook/create-react-app/pull/3146) Fix `reason-react` support. ([@lpalmes](https://github.com/lpalmes))
487487
- [#3236](https://github.com/facebook/create-react-app/pull/3236) Update `style-loader` and disable inclusion of its HMR code in builds. ([@insin](https://github.com/insin))
488488
- [#3246](https://github.com/facebook/create-react-app/pull/3246) Update `url-loader` to 0.6.2 for mime ReDoS vulnerability. ([@d3viant0ne](https://github.com/d3viant0ne))
@@ -1443,7 +1443,7 @@ yarn add --dev --exact [email protected]
14431443

14441444
## 1.0.0 (May 18, 2017)
14451445

1446-
We’ve been working on this release for the past few months, and there are many big impovements, from migrating to webpack 2 to a brand new runtime error overlay and built-in support for Progressive Web Apps.
1446+
We’ve been working on this release for the past few months, and there are many big improvements, from migrating to webpack 2 to a brand new runtime error overlay and built-in support for Progressive Web Apps.
14471447

14481448
So instead of just enumerating them here, we decided to write a blog post about all the new features.<br>
14491449
Check it out: **[What’s New in Create React App](https://facebook.github.io/react/blog/2017/05/18/whats-new-in-create-react-app.html)**.

azure-pipelines.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ variables:
1212
NPM_CONFIG_CACHE: $(Build.SourcesDirectory)/../npm-cache
1313
# Sets TEMP to be on the same drive as the cloned source on Windows. This avoids test scripts that "cd" into a directory under TEMP from failing because this directory is on a different drive from the current directory.
1414
VSTS_OVERWRITE_TEMP: True
15-
# Override Verdaccio package to use. This is temoporary and is needed to avoid socket timeouts on hosted Windows agent (on Azure). This also changes Verdaccio to return a 503 (service unavailable) instead of a 404 (not found) when the connection to the uplink timesout.
15+
# Override Verdaccio package to use. This is temporary and is needed to avoid socket timeouts on hosted Windows agent (on Azure). This also changes Verdaccio to return a 503 (service unavailable) instead of a 404 (not found) when the connection to the uplink timesout.
1616
VERDACCIO_PACKAGE: https://github.com/willsmythe/verdaccio/releases/download/create-react-app/verdaccio-4.0.0-alpha.8.tgz
1717

1818
# ******************************************************************************
@@ -67,7 +67,7 @@ jobs:
6767
# Old Node test suite
6868
# ******************************************************************************
6969
- job: OldNode
70-
pool:
70+
pool:
7171
vmImage: ubuntu-16.04
7272
steps:
7373
- task: NodeTool@0

packages/react-error-overlay/src/utils/unmapper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { getLinesAround } from './getLinesAround';
1212
import path from 'path';
1313

1414
function count(search: string, string: string): number {
15-
// Count starts at -1 becuse a do-while loop always runs at least once
15+
// Count starts at -1 because a do-while loop always runs at least once
1616
let count = -1,
1717
index = -1;
1818
do {

packages/react-scripts/config/webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ module.exports = function(webpackEnv) {
197197
terserOptions: {
198198
parse: {
199199
// we want terser to parse ecma 8 code. However, we don't want it
200-
// to apply any minfication steps that turns valid ecma 5 code
200+
// to apply any minification steps that turns valid ecma 5 code
201201
// into invalid ecma 5 code. This is why the 'compress' and 'output'
202202
// sections only apply transformations that are ecma 5 safe
203203
// https://github.com/facebook/create-react-app/pull/4234
@@ -213,7 +213,7 @@ module.exports = function(webpackEnv) {
213213
comparisons: false,
214214
// Disabled because of an issue with Terser breaking valid code:
215215
// https://github.com/facebook/create-react-app/issues/5250
216-
// Pending futher investigation:
216+
// Pending further investigation:
217217
// https://github.com/terser-js/terser/issues/120
218218
inline: 2,
219219
},

tasks/e2e-installs.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ exists node_modules/react-scripts-fork
213213
# ******************************************************************************
214214

215215
cd "$temp_app_path"
216-
# we will install a non-existing package to simulate a failed installataion.
216+
# we will install a non-existing package to simulate a failed installation.
217217
npx create-react-app test-app-should-not-exist --scripts-version=`date +%s` || true
218218
# confirm that the project files were deleted
219219
test ! -e test-app-should-not-exist/package.json
@@ -226,7 +226,7 @@ test ! -d test-app-should-not-exist/node_modules
226226
cd "$temp_app_path"
227227
mkdir test-app-should-remain
228228
echo '## Hello' > ./test-app-should-remain/README.md
229-
# we will install a non-existing package to simulate a failed installataion.
229+
# we will install a non-existing package to simulate a failed installation.
230230
npx create-react-app test-app-should-remain --scripts-version=`date +%s` || true
231231
# confirm the file exist
232232
test -e test-app-should-remain/README.md

0 commit comments

Comments
 (0)