net/rpc: correct comment for isExportedOrBuiltinType function
Change to follow the idiomatic Go doc comment style
diff --git a/src/net/rpc/server.go b/src/net/rpc/server.go
index 4233a42..961145c 100644
--- a/src/net/rpc/server.go
+++ b/src/net/rpc/server.go
@@ -202,7 +202,7 @@
// DefaultServer is the default instance of [*Server].
var DefaultServer = NewServer()
-// Is this type exported or a builtin?
+// isExportedOrBuiltinType reports whether t is an exported or builtin type
func isExportedOrBuiltinType(t reflect.Type) bool {
for t.Kind() == reflect.Pointer {
t = t.Elem()
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |