We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As reported by @NickStrange here In the getting started with TDD and utplsql
under Define tested function
create or replace function betwnstr( a_string varchar2, a_start_pos integer, a_end_pos integer ) return varchar2 is begin return substr( a_string, l_start_pos, a_end_pos - a_start_pos ); end; /
l_start_pos should be a_start_pos
l_start_pos
a_start_pos
The text was updated successfully, but these errors were encountered:
6e28c0d
Fixed #340 in documentation for develop and v3.0.0
81f8c75
Merge pull request #341 from jgebal/bugfix/doc_getting_started_exampl…
be752e5
…e_fix Fixed #340 in documentation for develop and v3.0.0
jgebal
No branches or pull requests
As reported by @NickStrange here
In the getting started with TDD and utplsql
under Define tested function
l_start_pos
should bea_start_pos
The text was updated successfully, but these errors were encountered: