summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_mutex.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_mutex.rb')
-rw-r--r--benchmark/bm_vm2_mutex.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bm_vm2_mutex.rb b/benchmark/bm_vm2_mutex.rb
index 9ec1a0f136..01b1c478cb 100644
--- a/benchmark/bm_vm2_mutex.rb
+++ b/benchmark/bm_vm2_mutex.rb
@@ -3,7 +3,7 @@ require 'thread'
m = Mutex.new
i=0
-while i<6000000 # benchmark loop 2
+while i<6_000_000 # benchmark loop 2
i+=1
m.synchronize{}
end