rspec/rules/S1065/swift/rule.adoc

27 lines
357 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
whileLoopLabel: while x > 0 { // Noncompliant
x -= 1
}
----
== Compliant Solution
----
while x > 0 {
x -= 1
}
----
include::../see.adoc[]
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]