I noticed that many examples in `code/` do not match the template. ```ruby require "benchmark/ips" def fast end def slow end Benchmark.ips do |x| x.report("fast code description") { fast } x.report("slow code description") { slow } x.compare! end ```