summaryrefslogtreecommitdiffhomepage
path: root/mrblib
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2020-12-15 19:34:01 +1000
committerJohn Bampton <[email protected]>2020-12-15 19:44:02 +1000
commit4fa3359d44471cf301fe6755dd281a87304d5d01 (patch)
tree5161a88ea84758ea3dca9b5271745207964015e0 /mrblib
parente9fe337b952731226449027a4c34471af27b23e6 (diff)
downloadmruby-4fa3359d44471cf301fe6755dd281a87304d5d01.tar.gz
mruby-4fa3359d44471cf301fe6755dd281a87304d5d01.zip
refactor: remove trailing whitespace from C, Header, Ruby and YAML files
Lint
Diffstat (limited to 'mrblib')
-rw-r--r--mrblib/array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrblib/array.rb b/mrblib/array.rb
index 6708027ab..18b729128 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])