From 8ef98c98c1e70acc7e6aa9ed37deb4e2fdaada2c Mon Sep 17 00:00:00 2001 From: Joshua Bambrick Date: Wed, 7 Aug 2019 02:36:13 +0100 Subject: [PATCH] Minor language fix (#3498) A slight improvement to the language, because: 1. "anymore" is not word 1. the second usage is also ambiguous - does it mean "we don't use it fromhereonin" or "we no longer use it"? --- docs/basics/Reducers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/basics/Reducers.md b/docs/basics/Reducers.md index c2c926c08d..6574b0ff60 100644 --- a/docs/basics/Reducers.md +++ b/docs/basics/Reducers.md @@ -291,7 +291,7 @@ function visibilityFilter(state = SHOW_ALL, action) { } ``` -Now we can rewrite the main reducer as a function that calls the reducers managing parts of the state, and combines them into a single object. It also doesn't need to know the complete initial state anymore. It's enough that the child reducers return their initial state when given `undefined` at first. +Now we can rewrite the main reducer as a function that calls the reducers managing parts of the state, and combines them into a single object. It also doesn't need to know the complete initial state any more. It's enough that the child reducers return their initial state when given `undefined` at first. ```js function todos(state = [], action) { @@ -396,7 +396,7 @@ All [`combineReducers()`](../api/combineReducers.md) does is generate a function > const todoApp = combineReducers(reducers) > ``` > -> Because `import *` is still new syntax, we don't use it anymore in the documentation to avoid [confusion](https://github.com/reduxjs/redux/issues/428#issuecomment-129223274), but you may encounter it in some community examples. +> Because `import *` is still new syntax, we no longer use it in the documentation to avoid [confusion](https://github.com/reduxjs/redux/issues/428#issuecomment-129223274), but you may encounter it in some community examples. ## Source Code