aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-20 10:09:55 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-20 10:09:55 +0000
commit3f0ae69186cc8effab317bae2da0472231bce67d (patch)
treed6b612edbdefa1954e832b1ce2b58b3e29263f6d /benchmark
parent12ae8c0813cc66cc49fe9ce41b82074d60586329 (diff)
downloadruby-3f0ae69186cc8effab317bae2da0472231bce67d.tar.gz
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark')
-rwxr-xr-xbenchmark/bm_vm2_fiber_chain.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bm_vm2_fiber_chain.rb b/benchmark/bm_vm2_fiber_chain.rb
index eda12fb948..7d5b561229 100755
--- a/benchmark/bm_vm2_fiber_chain.rb
+++ b/benchmark/bm_vm2_fiber_chain.rb
@@ -12,7 +12,7 @@ end
def make_chain(length, &block)
chain = Fiber.new(&block)
-
+
(length - 1).times do
chain = make_link(chain)
end