Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ var BlankLine = Times(2, NewLine) // \n\n

To implement a parser implement the `Parser[T]` type alias, a function that takes an `Input` and returns `(T, bool, error)`. Each parser should attempt to parse the `Input` and roll back if it is unable to find what it is looking for.

You can find examples in the [`time`](./time) package. Full documentation is available here [Godoc](https://pkg.go.dev/github.com/liamawhite/parse).
You can find examples in the [`time`](./time) package. Full documentation is available [here](https://pkg.go.dev/github.com/liamawhite/parse).
Loading