summaryrefslogtreecommitdiff
path: root/src/pkg/image/format.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/image/format.go')
-rw-r--r--src/pkg/image/format.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/image/format.go b/src/pkg/image/format.go
index 3040247f1..3668de4e6 100644
--- a/src/pkg/image/format.go
+++ b/src/pkg/image/format.go
@@ -47,7 +47,7 @@ func asReader(r io.Reader) reader {
return bufio.NewReader(r)
}
-// Match returns whether magic matches b. Magic may contain "?" wildcards.
+// Match reports whether magic matches b. Magic may contain "?" wildcards.
func match(magic string, b []byte) bool {
if len(magic) != len(b) {
return false