Fix typo
All checks were successful
Go / build (push) Successful in 54s

This commit is contained in:
majomi 2024-07-15 16:25:51 +02:00
parent 64531b717e
commit e2b10ffdea
Signed by: majomi
SSH Key Fingerprint: SHA256:VYTIGShChSqrGhLmmBZAmfYtjdyj+HLrfJ1Hb6d/0O8

View File

@ -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