Minor typos fixed (#12005)

* commiting -> committing

* doens't -> doesn't

* interuption -> interruption

* inital -> initial

* statment -> statement
This commit is contained in:
Semen Zhydenko 2018-01-11 13:24:49 +01:00 committed by Dan Abramov
parent b422fec459
commit 5b975411a1
10 changed files with 16 additions and 16 deletions

View File

@ -123,7 +123,7 @@ class SelectFixture extends React.Component {
<li>Click the "Reset" button</li>
</TestCase.Steps>
<TestCase.ExpectedResult>
The select should be reset to the inital value, "bar"
The select should be reset to the initial value, "bar"
</TestCase.ExpectedResult>
<div className="test-fixture">

View File

@ -302,7 +302,7 @@ describe('ReactDOMRoot', () => {
expect(container.textContent).toEqual('2');
});
it('commits a later batch without commiting an earlier batch', () => {
it('commits a later batch without committing an earlier batch', () => {
const root = ReactDOM.createRoot(container);
const batch1 = root.createBatch();
batch1.render(1);

View File

@ -704,7 +704,7 @@ describe('ReactIncremental', () => {
ops = [];
// Since we did nothing to the middle subtree during the interuption,
// Since we did nothing to the middle subtree during the interruption,
// we should be able to reuse the reconciliation work that we already did
// without restarting.
ReactNoop.flush();
@ -866,7 +866,7 @@ describe('ReactIncremental', () => {
ops = [];
// Since we did nothing to the middle subtree during the interuption,
// Since we did nothing to the middle subtree during the interruption,
// we should be able to reuse the reconciliation work that we already did
// without restarting.
ReactNoop.flush();

View File

@ -348,7 +348,7 @@ describe('ReactIncrementalSideEffects', () => {
ReactNoop.render(<Foo text="foo" step={1} />);
ReactNoop.flush();
// Since we did nothing to the middle subtree during the interuption,
// Since we did nothing to the middle subtree during the interruption,
// we should be able to reuse the reconciliation work that we already did
// without restarting. The side-effects should still be replayed.
@ -413,7 +413,7 @@ describe('ReactIncrementalSideEffects', () => {
ReactNoop.render(<Foo text="foo" step={1} />);
ReactNoop.flush(30);
// Since we did nothing to the middle subtree during the interuption,
// Since we did nothing to the middle subtree during the interruption,
// we should be able to reuse the reconciliation work that we already did
// without restarting. The side-effects should still be replayed.

View File

@ -53,7 +53,7 @@ module.exports = ({types: t, template}) => {
ITERATOR: iterator,
MAX_ITERATIONS: t.numericLiteral(MAX_ITERATIONS),
});
// No block statment e.g. `while (1) 1;`
// No block statement e.g. `while (1) 1;`
if (!path.get('body').isBlockStatement()) {
const statement = path.get('body').node;
path.get('body').replaceWith(t.blockStatement([guard, statement]));

View File

@ -24,9 +24,9 @@
<script src="top-stories.js"></script>
<script src="benchmark.js"></script>
<script>
performance.mark('Inital Render');
performance.mark('Initial Render');
render();
performance.measure('Inital Render', 'Inital Render');
performance.measure('Initial Render', 'Initial Render');
requestAnimationFrame(() => {
performance.mark('Update Render');
render();

View File

@ -19,9 +19,9 @@
</script>
<script src="benchmark.js"></script>
<script>
performance.mark('Inital Render');
performance.mark('Initial Render');
render();
performance.measure('Inital Render', 'Inital Render');
performance.measure('Initial Render', 'Initial Render');
requestAnimationFrame(() => {
performance.mark('Update Render');
render();

View File

@ -19,9 +19,9 @@
</script>
<script src="benchmark.js"></script>
<script>
performance.mark('Inital Render');
performance.mark('Initial Render');
render();
performance.measure('Inital Render', 'Inital Render');
performance.measure('Initial Render', 'Initial Render');
requestAnimationFrame(() => {
performance.mark('Update Render');
render();

View File

@ -19,9 +19,9 @@
</script>
<script src="benchmark.js"></script>
<script>
performance.mark('Inital Render');
performance.mark('Initial Render');
render();
performance.measure('Inital Render', 'Inital Render');
performance.measure('Initial Render', 'Initial Render');
requestAnimationFrame(() => {
performance.mark('Update Render');
render();

View File

@ -50,7 +50,7 @@ const push = async ({cwd, dry, packages, version}) => {
}
// If we've just published a stable release,
// Update the @next tag to also point to it (so @next doens't lag behind).
// Update the @next tag to also point to it (so @next doesn't lag behind).
if (!isPrerelease) {
await execUnlessDry(
`npm dist-tag add ${project}@${packageVersion} next`,