From 9a6d891ef874439f04115e18ce81eed50fa95409 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Sat, 4 Jul 2015 23:32:42 +0200 Subject: [PATCH] Doc improvements [ci skip] --- README.md | 2 +- src/BigRational.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2bcafde..83a1dd4 100644 --- a/README.md +++ b/README.md @@ -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 -------------- | ----------- diff --git a/src/BigRational.php b/src/BigRational.php index 2d9e679..9c6d257 100644 --- a/src/BigRational.php +++ b/src/BigRational.php @@ -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 *