diff options
author | Kenichi Kamiya <kachick1@gmail.com> | 2019-09-18 17:24:24 +0900 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2019-09-18 17:29:30 +0900 |
commit | 9118cb242b141c380a0180f64ffeb0c9fdae0c8b (patch) | |
tree | a521e115f73778b44d0ec7c8cb6bbb5d4f8b2085 | |
parent | bcd5f2e9d30d2bb34912e56b2e766ae952dd12dc (diff) | |
download | ruby-9118cb242b141c380a0180f64ffeb0c9fdae0c8b.tar.gz |
Fix typos
-rw-r--r-- | array.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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. * |