aboutsummaryrefslogtreecommitdiffstats
path: root/object.c
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-07-22 08:07:58 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-07-22 08:07:58 +0000
commit1782a2cf367317424bc24f61bfabd7a9e47b8527 (patch)
treefbf5d337392105563a98df40d2a599179086e7f2 /object.c
parent135204eb38d0ccecf42f2c068d9c6376853ea994 (diff)
downloadruby-1782a2cf367317424bc24f61bfabd7a9e47b8527.tar.gz
Fix documents
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/object.c b/object.c
index eda9caffc0..7d8a143b9a 100644
--- a/object.c
+++ b/object.c
@@ -1551,7 +1551,7 @@ true_xor(VALUE obj, VALUE obj2)
* call-seq:
* false.to_s -> "false"
*
- * 'nuf said...
+ * The string representation of <code>false</code> is "false".
*/
static VALUE
@@ -1817,7 +1817,7 @@ rb_mod_eqq(VALUE mod, VALUE arg)
*
* \param[in] mod a Module object
* \param[in] arg another Module object or an iclass of a module
- * \retval Qtrue if \a mod inherits \a arg
+ * \retval Qtrue if \a mod inherits \a arg, or \a mod equals \a arg
* \retval Qfalse if \a arg inherits \a mod
* \retval Qnil if otherwise
*++