diff --git a/src/reflect/type.go b/src/reflect/type.go index 83e59014eda..7aafc505bd9 100644 --- a/src/reflect/type.go +++ b/src/reflect/type.go @@ -54,6 +54,9 @@ type Type interface { // // For an interface type, the returned Method's Type field gives the // method signature, without a receiver, and the Func field is nil. + // + // Only exported methods are accessible and they are sorted in + // lexicographic order. Method(int) Method // MethodByName returns the method with that name in the type's