Add missing godoc on exported types

This commit is contained in:
Joël Stemmer
2022-08-11 00:47:46 +01:00
parent 066da07a49
commit 5616b5e921
3 changed files with 6 additions and 1 deletions

View File

@ -14,7 +14,7 @@ func NewJSONParser(options ...Option) *JSONParser {
return &JSONParser{gp: NewParser(options...)}
}
// Parser is a Go test json output Parser.
// JSONParser is a `go test -json` output Parser.
type JSONParser struct {
gp *Parser
}