aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/types/errors.go')
-rw-r--r--src/go/types/errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/types/errors.go b/src/go/types/errors.go
index 933de93d85..2d48fe14da 100644
--- a/src/go/types/errors.go
+++ b/src/go/types/errors.go
@@ -265,7 +265,7 @@ func stripAnnotations(s string) string {
var b strings.Builder
for _, r := range s {
// strip #'s and subscript digits
- if r != instanceMarker && !('₀' <= r && r < '₀'+10) { // '₀' == U+2080
+ if r < '₀' || '₀'+10 <= r { // '₀' == U+2080
b.WriteRune(r)
}
}