Skip to content

Commit be752e5

Browse files
authored
Merge pull request #341 from jgebal/bugfix/doc_getting_started_example_fix
Fixed #340 in documentation for develop and v3.0.0
2 parents a9ffefa + a016790 commit be752e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)