-
Notifications
You must be signed in to change notification settings - Fork 764
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
Update round()
for PHP-8.4 and Minor fixes for BCMath's round
#4425
base: master
Are you sure you want to change the base?
Conversation
I just noticed, does this conflict with #4107 ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I leave the Docbook / wording review to Girgias.
@@ -112,6 +112,7 @@ | |||
</tbody> | |||
</tgroup> | |||
</informaltable> | |||
However, please note that some newly added modes only exist in <link linkend="enum.roundingmode">RoundingMode</link>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
However, please note that some newly added modes only exist in <link linkend="enum.roundingmode">RoundingMode</link>. | |
However, please note that some newly added modes only exist in <enumname>RoundingMode</enumname>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't access the enum page because there is no link, is this something plan to address?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but currently not supported :/
reference/bc/bcmath/number/round.xml
Outdated
<term><parameter>mode</parameter></term> | ||
<listitem> | ||
<simpara> | ||
Specifies the rounding mode. | ||
Specifies the rounding mode. For more information about modes, see <link linkend="enum.roundingmode">RoundingMode</link>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specifies the rounding mode. For more information about modes, see <link linkend="enum.roundingmode">RoundingMode</link>. | |
Specifies the rounding mode. For more information about modes, see <enumname>RoundingMode</enumname>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use <enumname>
tags instead of <link>
the linking can be resolved out-of-band.
Fixed. |
No description provided.