Open yuzexing opened 6 years ago
There is something wrong in Chinese document
export function watchIncrementAsync() { yield takeEvery('INCREMENT_ASYNC', incrementAsync) }
It should be
export function* watchIncrementAsync() { yield takeEvery('INCREMENT_ASYNC', incrementAsync) }
There is something wrong in Chinese document
It should be