rspec/rules/S1103/description.adoc

7 lines
531 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
Defining a nested single-line comment within a multi-line comment invites errors. It may lead a developer to wrongly think that the lines located after the single-line comment are not part of the comment.
2021-02-02 15:02:10 +01:00
2021-01-27 13:42:22 +01:00
If a comment starting sequence, ``++/*++`` or ``++//++``, occurs within a ``++/*++`` comment, is it quite likely to be caused by a missing ``++*/++`` comment ending sequence.
2021-02-02 15:02:10 +01:00
2021-01-27 13:42:22 +01:00
If a comment starting sequence occurs within a ``++//++`` comment, it is probably because a region of code has been commented-out using ``++//++``.