Skip to content

Commit efd0d2e

Browse files
committed
fix space after period
1 parent f957b9f commit efd0d2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/createStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ export default function createStore(reducer, initialState, enhancer) {
7373
function getState() {
7474
if (isDispatching) {
7575
throw new Error(
76-
'You may not call store.getState() while the reducer is executing.' +
77-
'The reducer has already received the state as an argument.' +
76+
'You may not call store.getState() while the reducer is executing. ' +
77+
'The reducer has already received the state as an argument. ' +
7878
'Pass it down from the top reducer instead of reading it from the store.'
7979
)
8080
}

0 commit comments

Comments
 (0)