17 lines
191 B
Plaintext
17 lines
191 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
IF something
|
||
|
IF something_else
|
||
|
-- ...
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
IF something AND something_else
|
||
|
-- ...
|
||
|
----
|