rspec/rules/S2028/rpg/rule.adoc

33 lines
744 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
The use of ``++UNDERLINE++`` makes normal text printed to the screen difficult to read, and prevents titles from being read at all. For these reasons, ``++UNDERLINE++`` should not be used.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
R DETAIL1
* Noncompliant; next line contains UNDERLINE
NAME 25 2 2UNDERLINE
ADD1 25 3 2
R DETAIL3
ADD2 25 2SPACEB(1)
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
R DETAIL1
NAME 25 2 2
ADD1 25 3 2
R DETAIL3
ADD2 25 2SPACEB(1)
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::rspecator-view[]