From d231e4cffe5017627f649e04bd86caba2d60509e Mon Sep 17 00:00:00 2001 From: echenley Date: Wed, 10 Feb 2016 10:52:12 -0600 Subject: [PATCH] clarify comment --- src/instrument.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instrument.js b/src/instrument.js index 1b7e3c50..2af7e28e 100644 --- a/src/instrument.js +++ b/src/instrument.js @@ -172,7 +172,7 @@ function liftReducerWith(reducer, initialCommittedState, monitorReducer, options for (let i = 0; i < idsToDelete.length; i++) { if (computedStates[i + 1].error) { - // Stop if error is found. Commit only up to error. + // Stop if error is found. Commit actions up to error. excess = i; idsToDelete = stagedActionIds.slice(1, excess + 1); break;