Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9894 from davidenglishmusic/docs-configuration-fi…
…le-typos

Fix docs configuration file typos
  • Loading branch information
shilman committed Feb 25, 2020
1 parent 654aeb9 commit 1995d87
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/guides/guide-marko/index.md
Expand Up @@ -53,7 +53,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story
To do that, create a file at `.storybook/main.js` with the following content:

```js
module.exports {
module.exports = {
stories: ['../src/**/*.stories.[tj]s'],
};
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/guide-mithril/index.md
Expand Up @@ -54,7 +54,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story
To do that, create a file at `.storybook/main.js` with the following content:

```js
module.exports {
module.exports = {
stories: ['../src/**/*.stories.[tj]s'],
};
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/guide-preact/index.md
Expand Up @@ -54,7 +54,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story
To do that, create a file at `.storybook/main.js` with the following content:

```js
module.exports {
module.exports = {
stories: ['../src/**/*.stories.[tj]s'],
};
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/guide-rax/index.md
Expand Up @@ -54,7 +54,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story
To do that, create a file at `.storybook/main.js` with the following content:

```js
module.exports {
module.exports = {
stories: ['../src/**/*.stories.[tj]s'],
};
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/guide-riot/index.md
Expand Up @@ -53,7 +53,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story
To do that, create a file at `.storybook/main.js` with the following content:

```js
module.exports {
module.exports = {
stories: ['../src/**/*.stories.[tj]s'],
};
```
Expand Down

0 comments on commit 1995d87

Please sign in to comment.