rspec/rules/S2757/ruby/code-example.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

9 lines
160 B
Plaintext

[source,ruby]
----
target = -5
num = 3
target =- num # Noncompliant: target = -3. Is that the intended behavior?
target =+ num # Noncompliant: target = 3
----