From 3baf4c309c88b4018c746bcfc1a57d8f24c879a6 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 20 Jun 2015 22:03:26 -0400 Subject: [PATCH] fix comment for NewFileParser --- parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.go b/parser.go index 7924535..2d52ed8 100644 --- a/parser.go +++ b/parser.go @@ -33,7 +33,7 @@ func NewParser(reader io.Reader) *Parser { } } -// NewParser will create and initialize a new Parser from a provided from a filename string +// NewFileParser will create and initialize a new Parser from a provided from a filename string func NewFileParser(filename string) (*Parser, error) { reader, err := os.Open(filename) if err != nil {