From b6b50a20e3911866b45662c71584e35a2c3fae34 Mon Sep 17 00:00:00 2001 From: liam Date: Fri, 20 Dec 2024 15:07:48 -0800 Subject: [PATCH] Add godoc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 850e0d4..103b7d5 100644 --- a/README.md +++ b/README.md @@ -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. +You can find examples in the [`time`](./time) package. Full documentation is available here [Godoc](https://pkg.go.dev/github.com/liamawhite/parse).