diff options
author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-10-15 12:53:12 +0000 |
---|---|---|
committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-10-15 12:53:12 +0000 |
commit | a17cb167ea5e0f0690a94d8f39b821a43aebd456 (patch) | |
tree | b7c28180ea5d7d5bc428269e0eff8497756dc78a /benchmark/bm_vm1_length.rb | |
parent | 2780e752edac13439b14033b653588a511b8e111 (diff) | |
download | ruby-a17cb167ea5e0f0690a94d8f39b821a43aebd456.tar.gz |
* benchmark/: add missing spaces around assignment operators (= and +=) for
consistency.
Approved by ko1.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/bm_vm1_length.rb')
-rw-r--r-- | benchmark/bm_vm1_length.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bm_vm1_length.rb b/benchmark/bm_vm1_length.rb index 2245916499..353de3ab0e 100644 --- a/benchmark/bm_vm1_length.rb +++ b/benchmark/bm_vm1_length.rb @@ -2,7 +2,7 @@ a = 'abc' b = [1, 2, 3] i = 0 while i<30_000_000 # while loop 1 - i+=1 + i += 1 a.length b.length end |