From a17cb167ea5e0f0690a94d8f39b821a43aebd456 Mon Sep 17 00:00:00 2001 From: kou Date: Mon, 15 Oct 2012 12:53:12 +0000 Subject: * 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 --- benchmark/bm_app_strconcat.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'benchmark/bm_app_strconcat.rb') diff --git a/benchmark/bm_app_strconcat.rb b/benchmark/bm_app_strconcat.rb index d2203356de..7eed7c1aed 100644 --- a/benchmark/bm_app_strconcat.rb +++ b/benchmark/bm_app_strconcat.rb @@ -1,5 +1,5 @@ i = 0 while i<2_000_000 "#{1+1} #{1+1} #{1+1}" - i+=1 + i += 1 end -- cgit v1.2.3