rspec/rules/S1659/go/rule.adoc

23 lines
285 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
== Noncompliant Code Example
----
var i, j int = 1, 2
----
== Compliant Solution
----
var i int = 1
var j int = 2
----
include::../see.adoc[]
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]