redux-saga-beginner-tutorial icon indicating copy to clipboard operation
redux-saga-beginner-tutorial copied to clipboard

Errors in Chinese documents

Open yuzexing opened this issue 7 years ago • 0 comments

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

yuzexing avatar Apr 02 '18 09:04 yuzexing