diff --git a/docs/_jsdoc/tutorials/using-iterators.md b/docs/_jsdoc/tutorials/using-iterators.md index c50e05fe..e9c498c2 100644 --- a/docs/_jsdoc/tutorials/using-iterators.md +++ b/docs/_jsdoc/tutorials/using-iterators.md @@ -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