We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a54936 commit 1dee8acCopy full SHA for 1dee8ac
README.md
@@ -188,7 +188,7 @@ There are several kinds of combinators included in `better-parse`:
188
val sumParser = separated(number, plus) use { reduce { a, _, b -> a + b } }
189
```
190
191
- The `associativeLeft` and `associativeRight` combinators do exactly this, but they take the reducing operation as they are built:
+ The `leftAssociative` and `rightAssociative` combinators do exactly this, but they take the reducing operation as they are built:
192
193
```kotlin
194
val term: Parser<Term>
0 commit comments