20 lines
232 B
Plaintext
20 lines
232 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
IF something THEN
|
||
|
IF something_else THEN
|
||
|
-- ...
|
||
|
END IF;
|
||
|
END IF;
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
IF something AND something_else THEN
|
||
|
-- ...
|
||
|
END IF;
|
||
|
----
|