Refactoring code
Open
Suggestion
- Dominant language
- Ruby
- Stars
- 5.7k
- Forks
- 371
- PR merge metrics
- No merged PRs in 30d
Description
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
```
Contributor guide
Assessment
This issue has not been assessed yet.