diff --git a/vorbis.go b/vorbis.go index ce6ebe8..f2cf631 100644 --- a/vorbis.go +++ b/vorbis.go @@ -22,7 +22,7 @@ func newMetadataVorbis() *metadataVorbis { } type metadataVorbis struct { - c map[string]string // the vorbis commentsq + c map[string]string // the vorbis comments p *Picture } @@ -159,7 +159,6 @@ func parseComment(c string) (k, v string, err error) { err = errors.New("vorbis comment must contain '='") return } - k = kv[0] v = kv[1] return