rspec/rules/S1066/tsql/rule.adoc

17 lines
191 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
IF something
IF something_else
-- ...
----
== Compliant Solution
----
IF something AND something_else
-- ...
----