Skip to content

Commit 0e36dfb

Browse files
committed
Merge pull request reduxjs#490 from mindjuice/patch-8
Minor help text improvements
2 parents b868ad7 + ff57914 commit 0e36dfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/basics/Store.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Store
22

3-
In the previous steps, we have defined the [actions](Action.md) that represent the facts about “what happened” and the [reducers](Reducers.md) that update the state according to those actions.
3+
In the previous sections, we defined the [actions](Action.md) that represent the facts about “what happened” and the [reducers](Reducers.md) that update the state according to those actions.
44

5-
**Store** is an object that brings them together. The store has the following responsibilities:
5+
The **Store** is the object that brings them together. The store has the following responsibilities:
66

77
* Holds application state;
88
* Allows access to state via [`getState()`](../api/Store.md#getState);
@@ -72,4 +72,4 @@ let store = createStore(todoApp);
7272

7373
## Next Steps
7474

75-
Before creating a UI for our todo app, we will take a detour to [how the data flows in a Redux application](DataFlow.md).
75+
Before creating a UI for our todo app, we will take a detour to see [how the data flows in a Redux application](DataFlow.md).

0 commit comments

Comments
 (0)