Fix typo in documentation

This commit is contained in:
Nicolas Lamirault
2017-03-08 10:27:31 +01:00
committed by GitHub
parent 3093b8ebec
commit aa288c97a1

View File

@@ -54,7 +54,7 @@ func Archive(buf []byte) (types.Type, error) {
return doMatchMap(buf, matchers.Archive)
}
// IsArchive checks if the given buffer is an audio type
// IsArchive checks if the given buffer is an archive type
func IsArchive(buf []byte) bool {
kind, _ := Archive(buf)
return kind != types.Unknown