rspec/rules/S1301/swift/rule.adoc

23 lines
261 B
Plaintext
Raw Normal View History

include::../description.adoc[]
== Noncompliant Code Example
----
switch (variable) {
case 0:
doSomething();
default:
doSomethingElse();
}
----
== Compliant Solution
----
if (variable == 0) {
doSomething();
} else {
doSomethingElse();
}
----