From 79630948badfefeba02ac6b2f161d5e2c95337e3 Mon Sep 17 00:00:00 2001 From: Moti Zilberman Date: Tue, 31 May 2016 13:36:12 +0300 Subject: [PATCH] chore(index.js): Style fix --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 5988cdc..685a206 100644 --- a/src/index.js +++ b/src/index.js @@ -72,13 +72,13 @@ const defaultRequestMIDIAccess = global && global.navigator && global.navigator. * @example * // Basic usage * import { createStore } from 'redux'; - * import { makeMidiEnhancer } from 'redux-midi'; + * import { makeMidiEnhancer } from 'redux-midi'; * const store = createStore(reducer, initialState, makeMidiEnhancer()); * @example * // With middleware * import { createStore, applyMiddleware, compose } from 'redux'; * import { makeMidiEnhancer } from 'redux-midi'; - * // assuming middleware is an array of Redux middleware functions + * // assuming middleware is an array of Redux middleware functions * const store = createStore(reducer, initialState, compose( * makeMidiEnhancer({midiOptions: {sysex: true}}), * applyMiddleware(...middleware)