Skip to content

Commit

Permalink
fix: remove semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Johnny Da Costa <[email protected]>
  • Loading branch information
johndacost authored and heatherlp committed Mar 30, 2020
1 parent 4df348a commit 0014244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_jsdoc/tutorials/using-iterators.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function getAllResults(iterator) {
const res = await iterator.next();
if (res.value) {
// if not a getHistoryForKey iterator then key is contained in res.value.key
allResults.push(res.value.value.toString('utf8'););
allResults.push(res.value.value.toString('utf8'));
}

// check to see if we have reached then end
Expand Down

0 comments on commit 0014244

Please sign in to comment.