redux-saga / redux-saga-beginner-tutorial

Redux/Redux-saga beginner tutorial
MIT License
587 stars 542 forks source link

Errors in Chinese documents #40

Open yuzexing opened 6 years ago

yuzexing commented 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) }