Skip to content

Commit b13b7c7

Browse files
authored
Update README.md (#326)
1 parent dc67354 commit b13b7c7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -587,9 +587,10 @@ const response = await alice.bulk({ docs: documents })
587587
List all the docs in the database .
588588

589589
```js
590-
const doclist = await alice.list().then((body)
591-
doclist.rows.forEach((doc) => {
592-
console.log(doc);
590+
const doclist = await alice.list().then((body)=>{
591+
body.rows.forEach((doc) => {
592+
console.log(doc);
593+
})
593594
});
594595
```
595596

0 commit comments

Comments
 (0)