rspec/rules/S2757/go/fix.adoc
Fred Tingaud 49e4aff3ec
Modify Rule S2757: LaYC =+
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
2023-06-15 19:30:44 +02:00

17 lines
259 B
Plaintext

Replace the operators with a single one if that is the intention
[source,go]
----
var target, num = -5, 3
target -= num // target = -8
----
Or fix the spacing to avoid confusion
[source,go]
----
var target, num = -5, 3
target = -num // target = -3
----