Skip to content

Commit 9ed71a4

Browse files
formatting result based on latest configuration
1 parent ec67705 commit 9ed71a4

File tree

2 files changed

+6
-4
lines changed
  • docs/4-language-usage

2 files changed

+6
-4
lines changed

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

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

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

4546
if not l_isdigit then
4647
raise_application_error(co_errno,co_errmsg);
@@ -79,7 +80,8 @@ create or replace package body my_package is
7980
end loop check_pw_char;
8081
end loop check_digit;
8182

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

8486
if not l_isdigit then
8587
raise_application_error(co_errno,co_errmsg);
@@ -96,7 +98,7 @@ create or replace package body my_package is
9698
procedure password_check(in_password in varchar2) is
9799
co_digitpattern constant string(10 char) := '\d';
98100
co_errno constant simple_integer := -20501;
99-
co_errmsg constant string(100 char) :='Password must contain a digit.';
101+
co_errmsg constant string(100 char) := 'Password must contain a digit.';
100102
begin
101103
if not regexp_like(in_password,co_digitpattern) then
102104
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)