diff --git a/app/react/src/client/docs/lib/inspection/acornParser.test.ts b/app/react/src/client/docs/lib/inspection/acornParser.test.ts index 9367f035b70..f49752aed6f 100644 --- a/app/react/src/client/docs/lib/inspection/acornParser.test.ts +++ b/app/react/src/client/docs/lib/inspection/acornParser.test.ts @@ -148,7 +148,7 @@ describe('parse', () => { }); it('support array', () => { - const result = parse("['bottom-left', 'botton-center', 'bottom-right']"); + const result = parse("['bottom-left', 'bottom-center', 'bottom-right']"); const inferredType = result.inferredType as InspectionArray; expect(inferredType.type).toBe(InspectionType.ARRAY); diff --git a/docs/faq.md b/docs/faq.md index 1976efce092..6811951b25f 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -310,7 +310,7 @@ export default { plugins: [ // Other plugins - // Configures the replace plugin to allow Grapqhl Queries to work properly + // Configures the replace plugin to allow GraphQL Queries to work properly replace({ 'process.env.NODE_ENV': JSON.stringify('development'), }), diff --git a/examples/angular-cli/src/stories/basics/component-with-ng-on-destroy/component-with-on-destroy.stories.ts b/examples/angular-cli/src/stories/basics/component-with-ng-on-destroy/component-with-on-destroy.stories.ts index a66d9209ef3..d883d872b97 100644 --- a/examples/angular-cli/src/stories/basics/component-with-ng-on-destroy/component-with-on-destroy.stories.ts +++ b/examples/angular-cli/src/stories/basics/component-with-ng-on-destroy/component-with-on-destroy.stories.ts @@ -4,7 +4,7 @@ import { Story, Meta } from '@storybook/angular'; @Component({ selector: 'on-destroy', template: `Current time: {{ time }}
- 📝 The current time in console should no longer display after a change of stroy`, + 📝 The current time in console should no longer display after a change of story`, }) class OnDestroyComponent implements OnInit, OnDestroy { time: string; diff --git a/examples/cra-ts-essentials/src/stories/testing-react/components/AccountForm.tsx b/examples/cra-ts-essentials/src/stories/testing-react/components/AccountForm.tsx index b646a174143..22da93de548 100644 --- a/examples/cra-ts-essentials/src/stories/testing-react/components/AccountForm.tsx +++ b/examples/cra-ts-essentials/src/stories/testing-react/components/AccountForm.tsx @@ -25,7 +25,7 @@ const errorMap = { password: { required: { normal: 'Please enter a password', - tooltip: 'A password is requried to create an account', + tooltip: 'A password is required to create an account', }, length: { normal: 'Please enter a password of minimum 6 characters', diff --git a/examples/cra-ts-kitchen-sink/src/stories/docgen-tests/types/prop-types.js b/examples/cra-ts-kitchen-sink/src/stories/docgen-tests/types/prop-types.js index 193a37ac82a..ffc88c53c5a 100644 --- a/examples/cra-ts-kitchen-sink/src/stories/docgen-tests/types/prop-types.js +++ b/examples/cra-ts-kitchen-sink/src/stories/docgen-tests/types/prop-types.js @@ -215,7 +215,7 @@ PropTypesProps.propTypes = { oneOfComponents: PropTypes.oneOf([FunctionalComponent, ClassComponent]), oneOfEval: PropTypes.oneOf((() => ['News', 'Photos'])()), oneOfVar: PropTypes.oneOf(POSITIONS), - oneOfNested: PropTypes.oneOf(['News', ['bottom-left', 'botton-center', 'bottom-right']]), + oneOfNested: PropTypes.oneOf(['News', ['bottom-left', 'bottom-center', 'bottom-right']]), oneOfNestedSimpleInlineObject: PropTypes.oneOf(['News', [{ foo: PropTypes.string }]]), oneOfNestedComplexInlineObject: PropTypes.oneOf([ 'News', diff --git a/examples/external-docs/README.md b/examples/external-docs/README.md index 5fe025e663f..3c5d68643a7 100644 --- a/examples/external-docs/README.md +++ b/examples/external-docs/README.md @@ -1,3 +1,3 @@ # Storybook External Docs Example -This example demostrates using Stories in an app built outside of SB's build process. +This example demonstrates using Stories in an app built outside of SB's build process. diff --git a/examples/external-docs/src/components/AccountForm.tsx b/examples/external-docs/src/components/AccountForm.tsx index d5e612931ac..7872ce2e44d 100644 --- a/examples/external-docs/src/components/AccountForm.tsx +++ b/examples/external-docs/src/components/AccountForm.tsx @@ -25,7 +25,7 @@ const errorMap = { password: { required: { normal: 'Please enter a password', - tooltip: 'A password is requried to create an account', + tooltip: 'A password is required to create an account', }, length: { normal: 'Please enter a password of minimum 6 characters', diff --git a/examples/react-ts/src/AccountForm.tsx b/examples/react-ts/src/AccountForm.tsx index d5e612931ac..7872ce2e44d 100644 --- a/examples/react-ts/src/AccountForm.tsx +++ b/examples/react-ts/src/AccountForm.tsx @@ -25,7 +25,7 @@ const errorMap = { password: { required: { normal: 'Please enter a password', - tooltip: 'A password is requried to create an account', + tooltip: 'A password is required to create an account', }, length: { normal: 'Please enter a password of minimum 6 characters',