rspec/rules/S1109/rule.adoc

25 lines
260 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:47:33 +02:00
include::description.adoc[]
=== Noncompliant code example
[source,text]
----
if(condition) {
doSomething();}
----
=== Compliant solution
[source,text]
----
if(condition) {
doSomething();
}
----
2020-06-30 12:47:33 +02:00
include::exceptions.adoc[]