rspec/rules/S1192/abap/rule.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

28 lines
361 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
With the default threshold of 3:
----
WRITE: / 'Firstname'.
*...
WRITE: / 'Firstname'.
*...
WRITE: / 'Firstname'.
----
== Compliant Solution
----
CONSTANTS: fname TYPE c LENGTH 9 VALUE 'Firstname',
WRITE: / fname.
*...
WRITE: / fname.
*...
WRITE: / fname.
----
include::../exceptions.adoc[]