Skip to content

Commit

Permalink
Typo fixed in index.md (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaivanov95 authored Jun 27, 2024
1 parent 491c9d2 commit 773081a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ p3.parse(" ")

## Repeating parsers

Sometimes we need something to repeat zero or more types. The cats-parse have `rep` and `rep0` methods for repeating values. `rep` means that the parser must be successful _at least one time_. `rep0` means that the parser output might be empty.
Sometimes we need something to repeat zero or more times. The cats-parse have `rep` and `rep0` methods for repeating values. `rep` means that the parser must be successful _at least one time_. `rep0` means that the parser output might be empty.

```scala mdoc:reset
import cats.data.NonEmptyList
Expand Down

0 comments on commit 773081a

Please sign in to comment.