summaryrefslogtreecommitdiff
path: root/libgo/go/internal/reflectlite/tostring_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/internal/reflectlite/tostring_test.go')
-rw-r--r--libgo/go/internal/reflectlite/tostring_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/internal/reflectlite/tostring_test.go b/libgo/go/internal/reflectlite/tostring_test.go
index a1e5dae09d8..966b0bd8499 100644
--- a/libgo/go/internal/reflectlite/tostring_test.go
+++ b/libgo/go/internal/reflectlite/tostring_test.go
@@ -44,7 +44,7 @@ func valueToStringImpl(val reflect.Value) string {
} else {
return "false"
}
- case reflect.Ptr:
+ case reflect.Pointer:
v := val
str = typ.String() + "("
if v.IsNil() {