Skip to content

Commit

Permalink
Fix copy/paste mistakes in docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Jul 14, 2015
1 parent d326277 commit b326cd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/BigDecimal.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Brick\Math\Exception\ArithmeticException;
use Brick\Math\Exception\DivisionByZeroException;
use Brick\Math\Exception\RoundingNecessaryException;
use Brick\Math\Internal\Calculator;

/**
Expand Down Expand Up @@ -51,7 +50,7 @@ protected function __construct($value, $scale = 0)
*
* @return BigDecimal
*
* @throws ArithmeticException If the value cannot be converted to a BigInteger.
* @throws ArithmeticException If the value cannot be converted to a BigDecimal.
*/
public static function of($value)
{
Expand Down
2 changes: 1 addition & 1 deletion src/BigRational.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected function __construct(BigInteger $numerator, BigInteger $denominator, $
*
* @return BigRational
*
* @throws ArithmeticException If the value cannot be converted to a BigInteger.
* @throws ArithmeticException If the value cannot be converted to a BigRational.
*/
public static function of($value)
{
Expand Down

0 comments on commit b326cd8

Please sign in to comment.