Skip to content

Commit

Permalink
Merge pull request redux-saga#388 from nhjk/patch-1
Browse files Browse the repository at this point in the history
Fix code example bug in Beginner Tutorial
  • Loading branch information
yelouafi authored Jun 14, 2016
2 parents 146407f + 63c4699 commit 8580eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/introduction/BeginnerTutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ test('incrementAsync Saga test', (assert) => {
const gen = incrementAsync()

assert.deepEqual(
gen.next().value,
gen.next(),
{ done: false, value: ??? },
'incrementAsync should return a Promise that will resolve after 1 second'
)
Expand Down

0 comments on commit 8580eb1

Please sign in to comment.