Skip to content

Commit

Permalink
Use single quotes in examples #360
Browse files Browse the repository at this point in the history
  • Loading branch information
ovidiuch committed Jun 19, 2017
1 parent 1df29dc commit 827e34c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Expand Up @@ -43,7 +43,7 @@ From Loader to Playground:
- Loader frame loads, sends user fixture list and is ready to receive messages (happens once per full browser refresh)
```js
{
type: `loaderReady`,
type: 'loaderReady',
fixtures: {
ComponentA: ['fixture1', 'fixture2'],
}
Expand All @@ -52,7 +52,7 @@ From Loader to Playground:
- Fixture list updates due to changes on disk (received by Loader via webpack HMR)
```js
{
type: `fixtureListUpdate`,
type: 'fixtureListUpdate',
fixtures: {
ComponentA: ['fixture1', 'fixture2', 'fixture3']
}
Expand All @@ -61,7 +61,7 @@ From Loader to Playground:
- Fixture is loaded and serializable fixture body is sent
```js
{
type: `fixtureLoad`,
type: 'fixtureLoad',
fixtureBody: {
// serializable stuff
}
Expand All @@ -71,7 +71,7 @@ From Loader to Playground:
to changes on disk (received by Loader via webpack HMR)
```js
{
type: `fixtureUpdate`,
type: 'fixtureUpdate',
fixtureBody: {
// serializable stuff
}
Expand Down

0 comments on commit 827e34c

Please sign in to comment.