diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-05-06 06:29:39 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-05-06 06:29:39 -0700 |
| commit | 4edfe3bc379ffd42ea56108582316a98bf142101 (patch) | |
| tree | fe022811a83ef98bfecfbf4250e42a7cae034329 /mrblib/array.rb | |
| parent | 4f9a7e90adf0bdd77e7971d5066834c68eac33b0 (diff) | |
| parent | 1906d6eb33ea7e9643a7f506b83c13bcccf133dd (diff) | |
| download | mruby-4edfe3bc379ffd42ea56108582316a98bf142101.tar.gz mruby-4edfe3bc379ffd42ea56108582316a98bf142101.zip | |
Merge pull request #101 from bovi/master
Add documentation for Hash, Kernel, Numeric, Array and Range
Diffstat (limited to 'mrblib/array.rb')
| -rw-r--r-- | mrblib/array.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mrblib/array.rb b/mrblib/array.rb index 905b41cb0..881f22df7 100644 --- a/mrblib/array.rb +++ b/mrblib/array.rb @@ -88,10 +88,12 @@ class Array end end -# include modules +## +# Array is enumerable and comparable module Enumerable; end module Comparable; end class Array + # ISO 15.2.12.3 include Enumerable include Comparable |
