From 827e34c8632a2d59246a0c8e2d98b86b6ee8a557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ovidiu=20Chereche=C8=99?= Date: Mon, 19 Jun 2017 15:01:19 +0300 Subject: [PATCH] Use single quotes in examples #360 --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 592b9a2639..0a10a1bf43 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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'], } @@ -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'] } @@ -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 } @@ -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 }