Skip to content

Commit 7f0cdb2

Browse files
57uktsn
authored andcommitted
docs: Update README.md (#1555)
minor typo
1 parent ffc7d00 commit 7f0cdb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For problem one, passing props can be tedious for deeply nested components, and
5050

5151
So why don't we extract the shared state out of the components, and manage it in a global singleton? With this, our component tree becomes a big "view", and any component can access the state or trigger actions, no matter where they are in the tree!
5252

53-
By defining and separating the concepts involved in state management and enforcing rules that maintain independece between views and states, we give our code more structure and maintainability.
53+
By defining and separating the concepts involved in state management and enforcing rules that maintain independence between views and states, we give our code more structure and maintainability.
5454

5555
This is the basic idea behind Vuex, inspired by [Flux](https://facebook.github.io/flux/docs/overview.html), [Redux](http://redux.js.org/) and [The Elm Architecture](https://guide.elm-lang.org/architecture/). Unlike the other patterns, Vuex is also a library implementation tailored specifically for Vue.js to take advantage of its granular reactivity system for efficient updates.
5656

0 commit comments

Comments
 (0)