diff --git a/docs/src/pages/configurations/default-config/index.md b/docs/src/pages/configurations/default-config/index.md index f5298f37a8c4..475da695fbb1 100644 --- a/docs/src/pages/configurations/default-config/index.md +++ b/docs/src/pages/configurations/default-config/index.md @@ -3,7 +3,7 @@ id: 'default-config' title: 'Default Config' --- -Let's learn about the default config comes with Storybook. +Let's learn about the default config that comes with Storybook. ## Babel @@ -198,7 +198,7 @@ import { storiesOf } from '@storybook/react'; import imageFile from './static/image.png'; storiesOf('', module) - .add('with a image', () => ( + .add('with an image', () => ( covfefe )); ``` @@ -211,7 +211,7 @@ So, this is a good approach to loading all of your static content. ### JSON Loader You can import `.json` files, as you do with Node.js. -This will also allow you to use NPM projects, which imports `.json` files inside them. +This will also allow you to use NPM projects that import `.json` files inside them. ```js import React from 'react';