Skip to content

Commit

Permalink
Put ever parameter using named notation on a dedicated line
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSalvisberg committed Aug 25, 2023
1 parent 9422bf8 commit 1910766
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/4-language-usage/7-stored-objects/1-general/g-7110.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ declare
r_employee employees%rowtype;
co_id constant employees.employee_id%type := 107;
begin
employee_api.employee_by_id(out_row => r_employee,in_employee_id => co_id);
employee_api.employee_by_id(
out_row => r_employee
,in_employee_id => co_id
);
end;
/
```

0 comments on commit 1910766

Please sign in to comment.