From 85e63ac78656c530785244daefe5a5bc5f47cf00 Mon Sep 17 00:00:00 2001 From: Simon Howe Date: Thu, 8 Sep 2016 20:30:28 +0200 Subject: [PATCH] Fixes spelling mistake --- client/app/scripts/selectors/chartSelectors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/scripts/selectors/chartSelectors.js b/client/app/scripts/selectors/chartSelectors.js index 0d5456ae0..24358b828 100644 --- a/client/app/scripts/selectors/chartSelectors.js +++ b/client/app/scripts/selectors/chartSelectors.js @@ -36,7 +36,7 @@ export const nodesSelector = createSelector( // - is(v1, v2) === true // // - createDeepEqualSelector will wrap those calls with a: is(v1, v2) ? v1 : v2 -// - Thus you can compare consequtive calls to adjacentNodesSelector(state) with === (which is +// - Thus you can compare consecutive calls to adjacentNodesSelector(state) with === (which is // what redux is doing with connect() // // Note: this feels like the wrong way to be using reselect...