Fix various typos (#17724)

This commit is contained in:
Karan Sharma 2019-12-29 13:47:51 -08:00 committed by Brian Vaughn
parent 9357a483e9
commit d259f45813
4 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ export default class ButtonTestCases extends React.Component {
<FixtureSet title="Buttons">
<TestCase
title="onClick with disabled buttons"
description="The onClick event handler should not be invoked when clicking on a disabled buyaton">
description="The onClick event handler should not be invoked when clicking on a disabled button">
<TestCase.Steps>
<li>Click on the disabled button</li>
</TestCase.Steps>

View File

@ -172,7 +172,7 @@ class SelectFixture extends React.Component {
<option value="monkey">monkey</option>
<option value="lion">lion</option>
<option value="mongoose">mongoose</option>
<option value="tiger">tiget</option>
<option value="tiger">tiger</option>
</select>
</form>
</div>

View File

@ -95,7 +95,7 @@ trace('initial_render', performance.now(), () => {
root.render(
createElement(TestApp),
wrap(() => {
log.app('commited');
log.app('committed');
})
);
});

View File

@ -29,10 +29,10 @@ const run = async ({cwd, packages, skipPackages}) => {
}
for (let dependency in dependencies) {
// Do we depend on a package thas has been skipped?
// Do we depend on a package that has been skipped?
if (skipPackages.includes(dependency)) {
const version = dependencies[dependency];
// Do we depend on a version of the package than has not been published to NPM?
// Do we depend on a version of the package that has not been published to NPM?
const info = await execRead(`npm view ${dependency}@${version}`);
if (!info) {
console.log(