rspec/rules/S1715/abap/rule.adoc

26 lines
375 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
When there is only one statement in a chain, the chain syntax can be omitted, which simplifies the code.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
CLEAR: w_alvvr.
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
CLEAR w_alvvr.
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]