Skip to content

Commit ccb2f82

Browse files
googyagaearon
authored andcommitted
Fix a few typos (#10860)
1 parent 7c78a38 commit ccb2f82

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/_posts/2015-12-04-react-js-conf-2016-diversity-scholarship.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To apply for the scholarship, please visit the application page: **<http://goo.g
2828

2929
## Award Includes
3030

31-
* Paid registration fee for the React.js Conf Feburary 22 & 23 in downtown San Francisco, CA
31+
* Paid registration fee for the React.js Conf February 22 & 23 in downtown San Francisco, CA
3232
* Paid lodging expenses for February 21, 22, 23
3333

3434
## Important Dates

fixtures/dom/src/components/fixtures/text-inputs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class TextInputFixtures extends React.Component {
1010
return (
1111
<FixtureSet
1212
title="Inputs"
13-
description="Common behavior across controled and uncontrolled inputs">
13+
description="Common behavior across controlled and uncontrolled inputs">
1414
<TestCase title="Numbers in a controlled text field with no handler">
1515
<TestCase.Steps>
1616
<li>Move the cursor to after "2" in the text field</li>

scripts/bench/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if (require.main === module) {
7070
if (benchmarkInput) {
7171
serveBenchmark(benchmarkInput);
7272
} else {
73-
console.error('Please specifiy a benchmark directory to serve!');
73+
console.error('Please specify a benchmark directory to serve!');
7474
process.exit(1);
7575
}
7676
}

scripts/fiber/tests-passing.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ src/isomorphic/classic/__tests__/createReactClassIntegration-test.js
9797
* should warn on invalid prop types
9898
* should warn on invalid context types
9999
* should throw on invalid child context types
100-
* should warn when mispelling shouldComponentUpdate
101-
* should warn when mispelling componentWillReceiveProps
100+
* should warn when misspelling shouldComponentUpdate
101+
* should warn when misspelling componentWillReceiveProps
102102
* should throw if a reserved property is in statics
103103
* should support statics
104104
* should work with object getInitialState() return values

scripts/rollup/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ rimraf('build', () => {
523523
}
524524
// rather than run concurently, opt to run them serially
525525
// this helps improve console/warning/error output
526-
// and fixes a bunch of IO failures that sometimes occured
526+
// and fixes a bunch of IO failures that sometimes occurred
527527
return runWaterfall(tasks)
528528
.then(() => {
529529
// output the results

scripts/rollup/modules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function ignoreReactNativeModules() {
139139
function getExternalModules(externals, bundleType, isRenderer) {
140140
// external modules tell Rollup that we should not attempt
141141
// to bundle these modules and instead treat them as
142-
// external depedencies to the bundle. so for CJS bundles
142+
// external dependencies to the bundle. so for CJS bundles
143143
// this means having a require("name-of-external-module") at
144144
// the top of the bundle. for UMD bundles this means having
145145
// both a require and a global check for them

src/renderers/shared/fiber/ReactFiberCompleteWork.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ module.exports = function<T, P, I, TI, PI, C, CX, PL>(
281281
// bottom->up. Top->down is faster in IE11.
282282
let wasHydrated = popHydrationState(workInProgress);
283283
if (wasHydrated) {
284-
// TOOD: Move this and createInstance step into the beginPhase
284+
// TODO: Move this and createInstance step into the beginPhase
285285
// to consolidate.
286286
if (
287287
prepareToHydrateHostInstance(

src/renderers/shared/fiber/ReactFiberContext.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ exports.pushContextProvider = function(workInProgress: Fiber): boolean {
237237
emptyObject;
238238

239239
// Remember the parent context so we can merge with it later.
240-
// Inherit the parent's did-perform-work value to avoid inadvertantly blocking updates.
240+
// Inherit the parent's did-perform-work value to avoid inadvertently blocking updates.
241241
previousContext = contextStackCursor.current;
242242
push(contextStackCursor, memoizedMergedChildContext, workInProgress);
243243
push(

0 commit comments

Comments
 (0)