Skip to content

Commit 8fd61c9

Browse files
saylestylerktsn
authored andcommitted
mutates -> mutate; add period to mirror other constructions (#1655)
1 parent a1af9b1 commit 8fd61c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: examples/counter/store.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const state = {
99
count: 0
1010
}
1111

12-
// mutations are operations that actually mutates the state.
12+
// mutations are operations that actually mutate the state.
1313
// each mutation handler gets the entire state tree as the
1414
// first argument, followed by additional payload arguments.
1515
// mutations must be synchronous and can be recorded by plugins
@@ -43,7 +43,7 @@ const actions = {
4343
}
4444
}
4545

46-
// getters are functions
46+
// getters are functions.
4747
const getters = {
4848
evenOrOdd: state => state.count % 2 === 0 ? 'even' : 'odd'
4949
}

0 commit comments

Comments
 (0)