rspec/rules/S881/description.adoc
Alban Auzeill 2c306d110e Fix code block ambiguity with old header style
Ensure blank line before list and clean the one leading space
2020-06-30 17:16:12 +02:00

6 lines
388 B
Plaintext

The use of increment and decrement operators in method calls or in combination with other arithmetic operators is not recommended, because:
* It can significantly impair the readability of the code.
* It introduces additional side effects into a statement, with the potential for undefined behavior.
* It is safer to use these operators in isolation from any other arithmetic operators.