16 lines
178 B
Plaintext
16 lines
178 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if someCondition; puts "hello"; end
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if someCondition
|
||
|
puts "hello"
|
||
|
end
|
||
|
----
|