Skip to content

CAT 040

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-040 — String.build for simple literals

Field Value
Severity hint
Confidence low
Auto-fix

String.build for simple literals — Using String.build for a simple concatenation of literals adds unnecessary complexity. Use string interpolation.

Bad code

String.build { |io| io << "hello" << " " << "world" }

Clone this wiki locally