Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update post.md #270

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion day-18/post.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The [3 major principles](http://redux.js.org/docs/introduction/ThreePrinciples.h

* Updates are made with pure functions (in reducers)
* `state` is a read-only property
* `state` is the single source of truth (there is only one `store` in a Redux app)
* `store` is the single source of truth (there is only one `store` in a Redux app)

One big difference with Redux and Flux is the concept of middleware. Redux added the idea of middleware that we can use to manipulate actions as we receive them, both coming in and heading out of our application. We'll discuss them in further detail in a few days.

Expand Down