From c9548751397f088a716e069d881c728ae31aaf1b Mon Sep 17 00:00:00 2001 From: Mat Harden Date: Mon, 26 Oct 2020 14:39:02 +0000 Subject: [PATCH] Correct typo on naming-components and hierarchy When referring to stories in the past tense, "show" should be "shown". --- docs/writing-stories/naming-components-and-hierarchy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing-stories/naming-components-and-hierarchy.md b/docs/writing-stories/naming-components-and-hierarchy.md index 719443b44da..eda89203135 100644 --- a/docs/writing-stories/naming-components-and-hierarchy.md +++ b/docs/writing-stories/naming-components-and-hierarchy.md @@ -83,7 +83,7 @@ The `storySort` can also accept a configuration object. | Field | Type | Description | Required | Default Value | Example | | ----------- | :----: | :------------------------------------------------------: | :------: | :---------------------: | :-----------------------: | | **method** | String | Tells Storybook in which order the stories are displayed | No | Storybook configuration | `'alphabetical'` | -| **order** | Array | The stories to be show, ordered by supplied name | No | Empty Array `[]` | `['Intro', 'Components']` | +| **order** | Array | The stories to be shown, ordered by supplied name | No | Empty Array `[]` | `['Intro', 'Components']` | | **locales** | String | The locale required to be displayed | No | System locale | `en-US` | To sort your stories alphabetically, set `method` to `'alphabetical'` and optionally set the `locales` string. To sort your stories using a custom list, use the `order` array; stories that don't match an item in the `order` list will appear after the items in the list.