summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-07-22 14:18:45 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-07-22 14:56:36 +0900
commit914da3d7121613d6e440c700a23b97445bd81308 (patch)
treea28c54c7ae8b550cb85cdb0306162441668afd14
parent670622f45dae813e6e80759b9389309abf98ec8a (diff)
downloadmruby-914da3d7121613d6e440c700a23b97445bd81308.tar.gz
mruby-914da3d7121613d6e440c700a23b97445bd81308.zip
Small comment fix in `mrblib/array.c`.
-rw-r--r--mrblib/array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrblib/array.rb b/mrblib/array.rb
index 6535d6d83..6bcc8c482 100644
--- a/mrblib/array.rb
+++ b/mrblib/array.rb
@@ -12,7 +12,7 @@ class Array
# ISO 15.2.12.5.10
# def each(&block)
# return to_enum :each unless block
-
+ #
# idx = 0
# while idx < length
# block.call(self[idx])