From 8dfa2ccd42173104b09e5efbdeb3b3c710a17f22 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Thu, 21 Apr 2016 07:44:55 -0400 Subject: [PATCH] Remove erroneous apostrophe --- docs/api/applyMiddleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/applyMiddleware.md b/docs/api/applyMiddleware.md index d1da52b831..292e4d00d1 100644 --- a/docs/api/applyMiddleware.md +++ b/docs/api/applyMiddleware.md @@ -14,7 +14,7 @@ Middleware is not baked into [`createStore`](createStore.md) and is not a fundam #### Returns -(*Function*) A store enhancer that applies the given middleware. The store enhancer signature is `createStore => createStore'` but the easiest way to apply it is to pass it to [`createStore()`](./createStore.md) as the last `enhancer` argument. +(*Function*) A store enhancer that applies the given middleware. The store enhancer signature is `createStore => createStore` but the easiest way to apply it is to pass it to [`createStore()`](./createStore.md) as the last `enhancer` argument. #### Example: Custom Logger Middleware