lib/rgot/benchmark_result.rb in rgot-0.0.5 vs lib/rgot/benchmark_result.rb in rgot-0.1.0
- old
+ new
@@ -7,9 +7,9 @@
@n = n
@t = t
end
def to_s
- sprintf("%d\t%.3f ns/op", @n, @t / @n * 1_000_000_000)
+ sprintf("%d\t%d ns/op", @n, @t / @n * 1_000_000_000)
end
end
end