Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
fix(docs): tiny doc hiccup fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Aug 20, 2018
1 parent 7089c54 commit 106396f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ The returned stream is a valid `asyncIterator`.
##### Example

```javascript
for await (let [pkg, perm], value] of access.lsPackages.stream('zkat')) {
for await (let [pkg, perm] of access.lsPackages.stream('zkat')) {
console.log('zkat has', perm, 'access to', pkg)
}
// zkat has read-write access to eggplant
Expand Down Expand Up @@ -247,7 +247,7 @@ The returned stream is a valid `asyncIterator`.
##### Example

```javascript
for await (let [usr, perm], value] of access.lsCollaborators.stream('npm')) {
for await (let [usr, perm] of access.lsCollaborators.stream('npm')) {
console.log(usr, 'has', perm, 'access to npm')
}
// zkat has read-write access to npm
Expand Down

0 comments on commit 106396f

Please sign in to comment.