rspec/rules/S1065/rule.adoc

27 lines
303 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
2020-06-30 12:47:33 +02:00
include::description.adoc[]
=== Noncompliant code example
[source,text]
----
<<foo>> -- Noncompliant
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello, world!');
END;
----
=== Compliant solution
[source,text]
----
-- Compliant
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello, world!');
END;
----
2020-06-30 12:47:33 +02:00