diff --git a/content/blog/2018-09-10-introducing-the-react-profiler.md b/content/blog/2018-09-10-introducing-the-react-profiler.md index 6fb7fcef2..d73131fcb 100644 --- a/content/blog/2018-09-10-introducing-the-react-profiler.md +++ b/content/blog/2018-09-10-introducing-the-react-profiler.md @@ -173,7 +173,7 @@ The tracing API is still new and we will cover it in more detail in a future blo ### No profiling data has been recorded for the selected root -If your your application has multiple "roots", you may see the following message after profiling: +If your application has multiple "roots", you may see the following message after profiling:  This message indicates that no performance data was recorded for the root that's selected in the "Elements" panel. diff --git a/content/blog/2018-10-01-create-react-app-v2.md b/content/blog/2018-10-01-create-react-app-v2.md index 768c8d88b..cfc7c97a9 100644 --- a/content/blog/2018-10-01-create-react-app-v2.md +++ b/content/blog/2018-10-01-create-react-app-v2.md @@ -55,7 +55,7 @@ Run `npm install` (or `yarn`, if you use it). **For many projects, this one-line
-Here's a few more tips to get you started. +Here are a few more tips to get you started. **When you run `npm start` for the first time after the upgrade,** you'll get a prompt asking about which browsers you'd like to support. Press `y` to accept the default ones. They'll be written to your `package.json` and you can edit them any time. Create React App will use this information to produce smaller or polyfilled CSS bundles depending on whether you target modern browsers or older browsers. diff --git a/content/docs/optimizing-performance.md b/content/docs/optimizing-performance.md index 8d7da3594..3e5d8621a 100644 --- a/content/docs/optimizing-performance.md +++ b/content/docs/optimizing-performance.md @@ -187,7 +187,7 @@ Currently Chrome, Edge, and IE are the only browsers supporting this feature, bu `react-dom` 16.5+ and `react-native` 0.57+ provide enhanced profiling capabilities in DEV mode with the React DevTools Profiler. An overview of the Profiler can be found in the blog post ["Introducing the React Profiler"](/blog/2018/09/10/introducing-the-react-profiler.html). -A video walk through of the profiler is also [available on YouTube](https://www.youtube.com/watch?v=nySib7ipZdk). +A video walkthrough of the profiler is also [available on YouTube](https://www.youtube.com/watch?v=nySib7ipZdk). If you haven't yet installed the React DevTools, you can find them here: diff --git a/content/docs/reconciliation.md b/content/docs/reconciliation.md index bb39ce8a9..4a45aefcc 100644 --- a/content/docs/reconciliation.md +++ b/content/docs/reconciliation.md @@ -142,7 +142,7 @@ As a last resort, you can pass an item's index in the array as a key. This can w Reorders can also cause issues with component state when indexes are used as keys. Component instances are updated and reused based on their key. If the key is an index, moving an item changes it. As a result, component state for things like uncontrolled inputs can get mixed up and updated in unexpected ways. -[Here](codepen://reconciliation/index-used-as-key) is an example of the issues that can be caused by using indexes as keys on CodePen, and [here](codepen://reconciliation/no-index-used-as-key) is a updated version of the same example showing how not using indexes as keys will fix these reordering, sorting, and prepending issues. +[Here](codepen://reconciliation/index-used-as-key) is an example of the issues that can be caused by using indexes as keys on CodePen, and [here](codepen://reconciliation/no-index-used-as-key) is an updated version of the same example showing how not using indexes as keys will fix these reordering, sorting, and prepending issues. ## Tradeoffs diff --git a/content/tutorial/tutorial.md b/content/tutorial/tutorial.md index 350289466..103415959 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -164,7 +164,7 @@ The `ShoppingList` component above only renders built-in DOM components like `working here... thanks for all the new functionality 👍
— Stephen Haney (@sdothaney) October 1, 2018