aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-13 04:31:15 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-13 04:31:15 +0000
commit6e41c7c559f826fdd55d4b240770570c8b18bd89 (patch)
tree38258fc91785d9911d51bb8ab36e2dc29b620f4c /array.c
parent2106aa1990a5b6a81c0883d8732741de51e449cd (diff)
downloadruby-6e41c7c559f826fdd55d4b240770570c8b18bd89.tar.gz
* array.c: rdoc tweak for include?
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 0a2be58fcd..38e7857db5 100644
--- a/array.c
+++ b/array.c
@@ -3658,7 +3658,7 @@ rb_ary_hash(VALUE ary)
* ary.include?(object) -> true or false
*
* Returns +true+ if the given +object+ is present in +self+ (that is, if any
- * object <code>==</code> +object+), otherwise returns +false+.
+ * element <code>==</code> +object+), otherwise returns +false+.
*
* a = [ "a", "b", "c" ]
* a.include?("b") #=> true