Skip to content

Commit

Permalink
docs(combinators/sepBy): update sepBy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
norskeld committed May 31, 2022
1 parent f709a30 commit cc88ef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/combinators/sepBy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'sepBy'
kind: 'composite'
kind: 'primitive'
description: 'sepBy combinator parses zero or more occurrences of parser, separated by sep. Returns a list of values (without separator) returned by parser.'
---

Expand Down Expand Up @@ -49,9 +49,9 @@ const Parser = sepBy(uint(), string('+'))
run(Parser).with('one+two')
{
isOk: false,
isOk: true,
pos: 0,
expected: 'unsigned integer'
value: []
}
```
</details>

1 comment on commit cc88ef9

@vercel
Copy link

@vercel vercel bot commented on cc88ef9 May 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.