Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Source/Tutorials/03-CompositeReducers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Step=4, Changed=False, State={ "EvenValue": 2, "OddValue": 3 }

#### Requirement 3
We might need to use this pattern in many places in our application. We don't want to run the risk of forgetting to call
one of these reducers in one of the places we places we implement the pattern, but we also don't want to recreate the original
one of these reducers in one of the places we implement the pattern, but we also don't want to recreate the original
reducer in a more complex form.

Instead, we can let ***Reducible*** combine the two reducers into a single reducer automatically.
Expand Down Expand Up @@ -132,4 +132,4 @@ them from reducing values as high as `4`.

### Summary
Combining reducers allows us to keep our individual reducers small and focused on a
single goal, whilst allowing for complex state changes.
single goal, whilst allowing for complex state changes.
2 changes: 1 addition & 1 deletion Source/Tutorials/04-NestedReducers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ record AddStudentAchievement(int StudentId, string Achievement);


### Requirements
We have a school with zero to many students. We need to ensure that the student
We have a school with zero to many students. We need to ensure that the achievement
identified in the `AddStudentAchievement` delta is added to the correct student.

If the student is present in the school, and the student doesn't already have
Expand Down