Skip to content

Commit 81f8c75

Browse files
committed
Fixed #340 in documentation for develop and v3.0.0
1 parent 6e28c0d commit 81f8c75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

develop/userguide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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
```

v3.0.0/userguide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)