diff --git a/class.c b/class.c
index 5c909081cf..a6871baeea 100644
--- a/class.c
+++ b/class.c
@@ -865,8 +865,8 @@ class_instance_method_list(int argc, VALUE *argv, VALUE mod, int (*func) (ID, lo
* call-seq:
* mod.instance_methods(include_super=true) -> array
*
- * Returns an array containing the names of instance methods that is callable
- * from outside in the receiver. For a module, these are the public methods;
+ * Returns an array containing the names of the public and protected instance
+ * methods in the receiver. For a module, these are the public and protected methods;
* for a class, they are the instance (not singleton) methods. With no
* argument, or with an argument that is false, the
* instance methods in mod are returned, otherwise the methods
@@ -954,6 +954,7 @@ rb_class_public_instance_methods(int argc, VALUE *argv, VALUE mod)
* Returns an array of the names of singleton methods for obj.
* If the optional all parameter is true, the list will include
* methods in modules included in obj.
+ * Only public and protected singleton methods are returned.
*
* module Other
* def three() end
diff --git a/object.c b/object.c
index e5bb0fdf2b..3b7d3e6f5c 100644
--- a/object.c
+++ b/object.c
@@ -1755,7 +1755,7 @@ rb_mod_const_defined(int argc, VALUE *argv, VALUE mod)
* call-seq:
* obj.methods -> array
*
- * Returns a list of the names of methods publicly accessible in
+ * Returns a list of the names of public and protected methods of
* obj. This will include all the methods accessible in
* obj's ancestors.
*