1
0
mirror of https://github.com/danog/math.git synced 2024-11-30 04:19:31 +01:00

Doc improvements

[ci skip]
This commit is contained in:
Benjamin Morel 2015-07-04 23:32:42 +02:00
parent 786810b891
commit 9a6d891ef8
2 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@ The result of the division of a `BigRational` can always be represented exactly:
### Rounding modes
Here are the RoundingMode constants available:
Here are the `RoundingMode` constants available:
Rounding mode | Description
-------------- | -----------

View File

@ -74,8 +74,8 @@ final class BigRational extends BigNumber implements \Serializable
* If the denominator is negative, the signs of both the numerator and the denominator
* will be inverted to ensure that the denominator is always positive.
*
* @param BigNumber|number|string $numerator The numerator.
* @param BigNumber|number|string $denominator The denominator.
* @param BigNumber|number|string $numerator The numerator. Must be convertible to a BigInteger.
* @param BigNumber|number|string $denominator The denominator. Must be convertible to a BigInteger.
*
* @return BigRational
*