summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorKenichi Kamiya <kachick1@gmail.com>2019-09-18 17:24:24 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-09-18 17:29:30 +0900
commit9118cb242b141c380a0180f64ffeb0c9fdae0c8b (patch)
treea521e115f73778b44d0ec7c8cb6bbb5d4f8b2085 /array.c
parentbcd5f2e9d30d2bb34912e56b2e766ae952dd12dc (diff)
Fix typos
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2467
Diffstat (limited to 'array.c')
-rw-r--r--array.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/array.c b/array.c
index 3717c3ff34..55b408e43f 100644
--- a/array.c
+++ b/array.c
@@ -4500,7 +4500,7 @@ ary_recycle_hash(VALUE hash)
* Array Difference
*
* Returns a new array that is a copy of the original array, removing all
- * occurences of any item that also appear in +other_ary+. The order is
+ * occurrences of any item that also appear in +other_ary+. The order is
* preserved from the original array.
*
* It compares elements using their #hash and #eql? methods for efficiency.
@@ -4508,7 +4508,7 @@ ary_recycle_hash(VALUE hash)
* [ 1, 1, 2, 2, 3, 3, 4, 5 ] - [ 1, 2, 4 ] #=> [ 3, 3, 5 ]
*
* Note that while 1 and 2 were only present once in the array argument, and
- * were present twice in the receiver array, all occurences of each Integer are
+ * were present twice in the receiver array, all occurrences of each Integer are
* removed in the returned array.
*
* If you need set-like behavior, see the library class Set.
@@ -4551,7 +4551,7 @@ rb_ary_diff(VALUE ary1, VALUE ary2)
* Array Difference
*
* Returns a new array that is a copy of the original array, removing all
- * occurences of any item that also appear in +other_ary+. The order is
+ * occurrences of any item that also appear in +other_ary+. The order is
* preserved from the original array.
*
* It compares elements using their #hash and #eql? methods for efficiency.
@@ -4559,10 +4559,10 @@ rb_ary_diff(VALUE ary1, VALUE ary2)
* [ 1, 1, 2, 2, 3, 3, 4, 5 ].difference([ 1, 2, 4 ]) #=> [ 3, 3, 5 ]
*
* Note that while 1 and 2 were only present once in the array argument, and
- * were present twice in the receiver array, all occurences of each Integer are
+ * were present twice in the receiver array, all occurrences of each Integer are
* removed in the returned array.
*
- * Multiple array arguments can be supplied and all occurences of any element
+ * Multiple array arguments can be supplied and all occurrences of any element
* in those supplied arrays that match the receiver will be removed from the
* returned array.
*