diff --git a/src/reflect/type.go b/src/reflect/type.go index 1d637d134e9..afb802e6413 100644 --- a/src/reflect/type.go +++ b/src/reflect/type.go @@ -1428,7 +1428,7 @@ var ptrMap sync.Map // map[*rtype]*ptrType // For example, if t represents type Foo, PtrTo(t) represents *Foo. // // Deprecated: use PointerTo. PtrTo is the old spelling. -// The two functions behaves identically. +// The two functions behave identically. func PtrTo(t Type) Type { return PointerTo(t) } // PointerTo returns the pointer type with element t.