rspec/rules/S135/description.adoc

4 lines
341 B
Plaintext
Raw Normal View History

2021-01-27 13:42:22 +01:00
Restricting the number of ``++break++`` and ``++continue++`` statements in a loop is done in the interest of good structured programming.
2020-06-30 12:47:33 +02:00
2021-01-27 13:42:22 +01:00
Only one ``++break++`` or one ``++continue++`` statement is acceptable in a loop, since it facilitates optimal coding. If there is more than one, the code should be refactored to increase readability.