Merge pull request #18178 from apeltop/correct-typo

Fix typo examples & docs
This commit is contained in:
Michael Shilman 2022-05-12 14:46:21 +08:00 committed by GitHub
commit de741e3e6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -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);

View File

@ -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'),
}),

View File

@ -4,7 +4,7 @@ import { Story, Meta } from '@storybook/angular';
@Component({
selector: 'on-destroy',
template: `Current time: {{ time }} <br />
📝 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;

View File

@ -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',

View File

@ -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',

View File

@ -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.

View File

@ -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',

View File

@ -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',