summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_poly_method.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-15 12:53:12 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-15 12:53:12 +0000
commita17cb167ea5e0f0690a94d8f39b821a43aebd456 (patch)
treeb7c28180ea5d7d5bc428269e0eff8497756dc78a /benchmark/bm_vm2_poly_method.rb
parent2780e752edac13439b14033b653588a511b8e111 (diff)
* 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_vm2_poly_method.rb')
-rw-r--r--benchmark/bm_vm2_poly_method.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bm_vm2_poly_method.rb b/benchmark/bm_vm2_poly_method.rb
index eaba75d7e3..c82c0e4bce 100644
--- a/benchmark/bm_vm2_poly_method.rb
+++ b/benchmark/bm_vm2_poly_method.rb
@@ -16,5 +16,5 @@ i = 0
while i<6_000_000 # benchmark loop 2
o = (i % 2 == 0) ? o1 : o2
o.m; o.m; o.m; o.m; o.m; o.m; o.m; o.m
- i+=1
+ i += 1
end