summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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