aboutsummaryrefslogtreecommitdiff
path: root/cmp
diff options
context:
space:
mode:
authorJoe Tsai <joetsai@digital-static.net>2017-09-27 13:39:27 -0700
committerGitHub <noreply@github.com>2017-09-27 13:39:27 -0700
commita10bc8f09647f956e30b99e8277b6c5f8ef08bc3 (patch)
tree4bd3dcbf679e0eb255c07e7aaa5c77531f65ceed /cmp
parentd5735f74713c51f7450a43d0a98d41ce2c1db3cb (diff)
downloadgo-cmp-a10bc8f09647f956e30b99e8277b6c5f8ef08bc3.tar.gz
Add UID to BUG note (#42)
The go/doc package requires a UID to be present in order to detect package level annotations. See https://golang.org/pkg/go/doc#Note
Diffstat (limited to 'cmp')
-rw-r--r--cmp/compare.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmp/compare.go b/cmp/compare.go
index 5527f01..2980d74 100644
--- a/cmp/compare.go
+++ b/cmp/compare.go
@@ -35,7 +35,7 @@ import (
"github.com/google/go-cmp/cmp/internal/value"
)
-// BUG: Maps with keys containing NaN values cannot be properly compared due to
+// BUG(dsnet): Maps with keys containing NaN values cannot be properly compared due to
// the reflection package's inability to retrieve such entries. Equal will panic
// anytime it comes across a NaN key, but this behavior may change.
//