Fix godoc

This commit is contained in:
Adam Scarr 2017-08-11 00:54:27 +10:00
parent c160e565ba
commit f5b81e8e2e

View File

@ -33,15 +33,11 @@ type VoidParser func(*State)
// //
// This makes recursive grammars cleaner and allows string literals to be used directly in most contexts. // This makes recursive grammars cleaner and allows string literals to be used directly in most contexts.
// eg, matching balanced paren: // eg, matching balanced paren:
// ```go
// var group Parser // var group Parser
// group = Seq("(", Maybe(&group), ")") // group = Seq("(", Maybe(&group), ")")
// ```
// vs // vs
// ```go
// var group ParserPtr{} // var group ParserPtr{}
// group.P = Seq(Exact("("), Maybe(group.Parse), Exact(")")) // group.P = Seq(Exact("("), Maybe(group.Parse), Exact(")"))
// ```
type Parserish interface{} type Parserish interface{}
// Parsify takes a Parserish and makes a Parser out of it. It should be called by // Parsify takes a Parserish and makes a Parser out of it. It should be called by