aboutsummaryrefslogtreecommitdiff
path: root/src/bytes/bytes_decl.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytes/bytes_decl.go')
-rw-r--r--src/bytes/bytes_decl.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytes/bytes_decl.go b/src/bytes/bytes_decl.go
index d144fccf4b..af0f8b179f 100644
--- a/src/bytes/bytes_decl.go
+++ b/src/bytes/bytes_decl.go
@@ -14,11 +14,11 @@ func IndexByte(b []byte, c byte) int // in internal/bytealg
// Equal returns a boolean reporting whether a and b
// are the same length and contain the same bytes.
// A nil argument is equivalent to an empty slice.
-func Equal(a, b []byte) bool // ../runtime/asm_$GOARCH.s
+func Equal(a, b []byte) bool // in internal/bytealg
//go:noescape
// Compare returns an integer comparing two byte slices lexicographically.
// The result will be 0 if a==b, -1 if a < b, and +1 if a > b.
// A nil argument is equivalent to an empty slice.
-func Compare(a, b []byte) int // ../runtime/noasm.go or ../runtime/asm_{386,amd64}.s
+func Compare(a, b []byte) int // in internal/bytealg