From 00846fd3a6333cf2e1941b53824c3bd8175bcff9 Mon Sep 17 00:00:00 2001 From: Bruno Heridet Date: Sun, 8 Jan 2017 17:26:46 +0100 Subject: [PATCH] =?UTF-8?q?docs(hoc):=20fix=20typo=20Rambda=20=E2=86=92=20?= =?UTF-8?q?Ramda=20(#8712)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/higher-order-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/higher-order-components.md b/docs/docs/higher-order-components.md index c27024c5fa..05e0762f03 100644 --- a/docs/docs/higher-order-components.md +++ b/docs/docs/higher-order-components.md @@ -291,7 +291,7 @@ const EnhancedComponent = enhance(WrappedComponent) (This same property also allows `connect` and other enhancer-style HOCs to be used as decorators, an experimental JavaScript proposal.) -The `compose` utility function is provided by many third-party libraries including lodash (as [`lodash.flowRight`](https://lodash.com/docs/#flowRight)), [Redux](http://redux.js.org/docs/api/compose.html), and [Rambda](http://ramdajs.com/docs/#compose). +The `compose` utility function is provided by many third-party libraries including lodash (as [`lodash.flowRight`](https://lodash.com/docs/#flowRight)), [Redux](http://redux.js.org/docs/api/compose.html), and [Ramda](http://ramdajs.com/docs/#compose). ## Convention: Wrap the Display Name for Easy Debugging