From cd7b027fa4de89b7f49f118d1d74a6afa650c5e1 Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Fri, 7 Jun 2019 10:10:44 +0200 Subject: [PATCH] Fix grammar in index.md (#7001) Fix grammar in index.md --- docs/src/pages/configurations/default-config/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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';