We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
UnbalanceDateDurationRelative, step 6:
Return ? CreateDateDurationRecord(0, 0, 0, days + yearsMonthsWeeksInDays).
It don't think callers require days + yearsMonthsWeeksInDays to represent valid duration days, so the step can most likely be changed to just:
days + yearsMonthsWeeksInDays
Return days + yearsMonthsWeeksInDays.
The text was updated successfully, but these errors were encountered:
Editorial: Fix returned value of UnbalanceDateDurationRelative
5207927
This operation returns a number of days, not a Date Duration Record. Closes: #2871
96f3a01
ptomato
Successfully merging a pull request may close this issue.
UnbalanceDateDurationRelative, step 6:
It don't think callers require
days + yearsMonthsWeeksInDays
to represent valid duration days, so the step can most likely be changed to just:The text was updated successfully, but these errors were encountered: