Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2176a06

Browse files
authored
Merge branch 'develop' into bugfix/annotation_closing_bracket
2 parents b5dc230 + be752e5 commit 2176a06

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/userguide/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Looks like we need to define the function we want to test.
116116
create or replace function betwnstr( a_string varchar2, a_start_pos integer, a_end_pos integer ) return varchar2
117117
is
118118
begin
119-
return substr( a_string, l_start_pos, a_end_pos - a_start_pos );
119+
return substr( a_string, a_start_pos, a_end_pos - a_start_pos );
120120
end;
121121
/
122122
```
@@ -149,7 +149,7 @@ The function returned string one character short, so we need to add 1 to the sub
149149
create or replace function betwnstr( a_string varchar2, a_start_pos integer, a_end_pos integer ) return varchar2
150150
is
151151
begin
152-
return substr( a_string, l_start_pos, a_end_pos - a_start_pos + 1 );
152+
return substr( a_string, a_start_pos, a_end_pos - a_start_pos + 1 );
153153
end;
154154
/
155155
```

0 commit comments

Comments
 (0)