Skip to content

Commit f5f09fc

Browse files
formatting result based on latest configuration
1 parent a56ca52 commit f5f09fc

File tree

3 files changed

+5
-7
lines changed
  • docs/4-language-usage

3 files changed

+5
-7
lines changed

docs/4-language-usage/4-control-structures/2-case-if-decode-nvl-nvl2-coalesce/g-4220.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ select case
5454
when dummy = 'Y' then
5555
2
5656
when dummy is null then
57-
- 1
57+
-1
5858
else
5959
0
6060
end

docs/4-language-usage/4-control-structures/3-flow-control/g-4310.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ create or replace package body my_package is
4040
end loop check_pw_char;
4141
end loop check_digit;
4242

43-
<<check_other_things>>
44-
null;
43+
<<check_other_things>>null;
4544

4645
if not l_isdigit then
4746
raise_application_error(co_errno,co_errmsg);
@@ -80,8 +79,7 @@ create or replace package body my_package is
8079
end loop check_pw_char;
8180
end loop check_digit;
8281

83-
<<check_other_things>>
84-
null;
82+
<<check_other_things>>null;
8583

8684
if not l_isdigit then
8785
raise_application_error(co_errno,co_errmsg);
@@ -98,7 +96,7 @@ create or replace package body my_package is
9896
procedure password_check(in_password in varchar2) is
9997
co_digitpattern constant string(10 char) := '\d';
10098
co_errno constant simple_integer := -20501;
101-
co_errmsg constant string(100 char) := 'Password must contain a digit.';
99+
co_errmsg constant string(100 char) :='Password must contain a digit.';
102100
begin
103101
if not regexp_like(in_password,co_digitpattern) then
104102
raise_application_error(co_errno,co_errmsg);

docs/4-language-usage/5-exception-handling/g-5020.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exception
1919
when too_many_rows then
2020
my_package.some_further_processing();
2121
when others then
22-
if sqlcode = co_no_data_found then
22+
if sqlcode =co_no_data_found then
2323
null;
2424
end if;
2525
end;

0 commit comments

Comments
 (0)