Skip to content

Commit

Permalink
Merge pull request #29 from kadirahq/fix-typo
Browse files Browse the repository at this point in the history
Fix some typo
  • Loading branch information
arunoda authored Aug 31, 2016
2 parents 95a81d8 + fc09cf4 commit 72cfdc0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {stripIndent} from 'common-tags'

export default {
id: "addon-galary",
title: "Addon Galary",
id: "addon-gallery",
title: "Addon Gallery",
content: stripIndent`
This is a list of available addons for Storybook.
Expand Down
4 changes: 2 additions & 2 deletions src/docs/addons/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ export default {
You also pass the channel and the Storybook API into that. See:
~~~js
addonAPI.register('kadira/notes', (api) => {
addonAPI.register('kadira/notes', (storybookAPI) => {
// Also need to set a unique name to the panel.
addonAPI.addPanel('kadira/notes/panel', {
title: 'Notes',
render: () => (
<Notes channel={addons.getChannel()} api={api}/>
<Notes channel={addons.getChannel()} api={storybookAPI}/>
),
})
})
Expand Down
4 changes: 2 additions & 2 deletions src/docs/addons/introduction.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
id: "introduction",
title: "Introduction",
content: stripIndent`
By default, Storybook comes with a way to list stories and visualize them. Addons implements extra features for Storybook to make Storybook more useful.
By default, Storybook comes with a way to list stories and visualize them. Addons implement extra features for Storybooks to make them more useful.
Basically, there are two types of addons. (Decorators and Native Addons)
Expand Down Expand Up @@ -105,7 +105,7 @@ export default {
See the following links to learn more about native addons:
* [Using addons](/docs/addons/using-addons)
* [Addon Galary](/docs/addons/addon-galary)
* [Addon gallery](/docs/addons/addon-gallery)
* [Write your own addon](/docs/addons/writing-addons)
`
};
2 changes: 1 addition & 1 deletion src/docs/addons/using-addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default {
![Stories with notes](${images.storiesWithNotes})
Just like this, you can install any other addon and use it. Have a look at our [addon gallery](/docs/addons/addon-galary) to discover more addons.
Just like this, you can install any other addon and use it. Have a look at our [addon gallery](/docs/addons/addon-gallery) to discover more addons.
> This particular addon has created a panel in Storybook. Some addons may not create a panel and may use some other Storybook platform features.
>
Expand Down
2 changes: 1 addition & 1 deletion src/docs/addons/writing-addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
* Select a story.
* Register keyboard shortcuts (coming soon).
With this, you can write some pretty cool addons. Look at our [Addon Galary](/docs/addons/addon-galary) to have a look at some sample addons.
With this, you can write some pretty cool addons. Look at our [Addon gallery](/docs/addons/addon-gallery) to have a look at some sample addons.
## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion src/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const data = {
items: [
require('./addons/introduction').default,
require('./addons/using-addons').default,
require('./addons/addon-galary').default,
require('./addons/addon-gallery').default,
require('./addons/writing-addons').default,
require('./addons/api').default,
]
Expand Down

0 comments on commit 72cfdc0

Please sign in to comment.