summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-array-ext
diff options
context:
space:
mode:
authorKOBAYASHI Shuji <[email protected]>2019-09-20 09:28:56 +0900
committerKOBAYASHI Shuji <[email protected]>2019-09-20 09:28:56 +0900
commit1fb4e73981d2c9588eb25acfcc2d34fca3a415bd (patch)
tree79e0e8e2e68782cf793300e2199992e4231a2306 /mrbgems/mruby-array-ext
parent21c0c78d2e48f32e757fc44381c3bbc9706cec98 (diff)
downloadmruby-1fb4e73981d2c9588eb25acfcc2d34fca3a415bd.tar.gz
mruby-1fb4e73981d2c9588eb25acfcc2d34fca3a415bd.zip
Fix typo in `Array#difference` document [ci skip]
Diffstat (limited to 'mrbgems/mruby-array-ext')
-rw-r--r--mrbgems/mruby-array-ext/mrblib/array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-array-ext/mrblib/array.rb b/mrbgems/mruby-array-ext/mrblib/array.rb
index 5201cbe57..7cec44dba 100644
--- a/mrbgems/mruby-array-ext/mrblib/array.rb
+++ b/mrbgems/mruby-array-ext/mrblib/array.rb
@@ -129,7 +129,7 @@ class Array
# ary.difference(other_ary1, other_ary2, ...) -> new_ary
#
# 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.
#
def difference(*args)