From 62e2154cad441a4ba05394887990c0cc15689425 Mon Sep 17 00:00:00 2001 From: David Howden Date: Fri, 3 Jul 2015 23:15:16 +1000 Subject: [PATCH] Fix godoc comment. --- id.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/id.go b/id.go index d967f17..b2c8a0c 100644 --- a/id.go +++ b/id.go @@ -6,7 +6,7 @@ import ( "os" ) -// Identify reads from the given ReadSeaker and +// Identify identifies the format and file type of the data in the ReadSeeker. func Identify(r io.ReadSeeker) (format Format, fileType FileType, err error) { b, err := readBytes(r, 11) if err != nil {