Skip to content

CAT 010

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-010 — String#+ in loop → String.build

Field Value
Severity warning
Confidence high
Auto-fix

String#+ in loop → String.build — Repeated String#+ creates new strings each iteration. Use String.build for efficient incremental building.

Bad code

str = ""
10.times { str += "x" }

Clone this wiki locally