Fix typo examples & docs

This commit is contained in:
apeltop 2022-05-09 15:18:10 +09:00
parent 8da2f7f51a
commit a3ce3c366d
8 changed files with 8 additions and 8 deletions

View File

@ -148,7 +148,7 @@ describe('parse', () => {
}); });
it('support array', () => { 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; const inferredType = result.inferredType as InspectionArray;
expect(inferredType.type).toBe(InspectionType.ARRAY); expect(inferredType.type).toBe(InspectionType.ARRAY);

View File

@ -304,7 +304,7 @@ export default {
plugins: [ plugins: [
// Other 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({ replace({
'process.env.NODE_ENV': JSON.stringify('development'), 'process.env.NODE_ENV': JSON.stringify('development'),
}), }),

View File

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

View File

@ -25,7 +25,7 @@ const errorMap = {
password: { password: {
required: { required: {
normal: 'Please enter a password', normal: 'Please enter a password',
tooltip: 'A password is requried to create an account', tooltip: 'A password is required to create an account',
}, },
length: { length: {
normal: 'Please enter a password of minimum 6 characters', normal: 'Please enter a password of minimum 6 characters',

View File

@ -215,7 +215,7 @@ PropTypesProps.propTypes = {
oneOfComponents: PropTypes.oneOf([FunctionalComponent, ClassComponent]), oneOfComponents: PropTypes.oneOf([FunctionalComponent, ClassComponent]),
oneOfEval: PropTypes.oneOf((() => ['News', 'Photos'])()), oneOfEval: PropTypes.oneOf((() => ['News', 'Photos'])()),
oneOfVar: PropTypes.oneOf(POSITIONS), 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 }]]), oneOfNestedSimpleInlineObject: PropTypes.oneOf(['News', [{ foo: PropTypes.string }]]),
oneOfNestedComplexInlineObject: PropTypes.oneOf([ oneOfNestedComplexInlineObject: PropTypes.oneOf([
'News', 'News',

View File

@ -1,3 +1,3 @@
# Storybook External Docs Example # 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: { password: {
required: { required: {
normal: 'Please enter a password', normal: 'Please enter a password',
tooltip: 'A password is requried to create an account', tooltip: 'A password is required to create an account',
}, },
length: { length: {
normal: 'Please enter a password of minimum 6 characters', normal: 'Please enter a password of minimum 6 characters',

View File

@ -25,7 +25,7 @@ const errorMap = {
password: { password: {
required: { required: {
normal: 'Please enter a password', normal: 'Please enter a password',
tooltip: 'A password is requried to create an account', tooltip: 'A password is required to create an account',
}, },
length: { length: {
normal: 'Please enter a password of minimum 6 characters', normal: 'Please enter a password of minimum 6 characters',