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 <johnny.dacosta@he-arc.ch>
  • Loading branch information
johndacost authored and mbwhite committed Mar 9, 2020
1 parent e86cde6 commit b15a2ed
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 b15a2ed

Please sign in to comment.