-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
Documentation examples on transaction management contains invalid code #23
Comments
this task will get someone's attention soon |
thanks for reporting! I topped your account for 15 mins, transaction 40726905 |
@darkled the task is for you now, follow these guidelines. Don't hesitate to ask any technical questions right here Task's budget is 30 mins (see this for explanation) |
@carlosmiranda @dmarkov please, pay your attention, that PR is sent, but it's acceptance is blocked by #33 |
I think we can continue, impediment #33 is closed |
@carlosmiranda should be fixed within PR #32, please, check it and close the issue if it is done. |
@darkled Indeed it's fixed, thank you. Closing now. |
@darkled thank you, added 30 mins to your acc, payment num is |
In our documentation page http://jdbc.jcabi.com/example-transaction.html, we have the following example, which contains some invalid statements:
This is wrong because the method
update
andinsert
have signaturesT update(Outcome<T>)
andT insert(Outcome<T>)
. We should be referring to theexecute()
method instead, like so:The text was updated successfully, but these errors were encountered: