1
0
mirror of https://github.com/danog/math.git synced 2025-01-22 13:41:12 +01:00

Fixed typo

This commit is contained in:
Benjamin Morel 2014-11-21 11:37:53 +01:00
parent bd5124d07e
commit 8bf792b5d2

View File

@ -58,7 +58,7 @@ Only `string` allows you to safely instantiate a number with an unlimited number
### Immutability
The `BigInteger` and `BigDecimal` classes are immutable: their value never change, so that they can be safely passed around. All methods that return a `BigInteger` or `BigDecimal` return a new object, leaving the original object unaffected:
The `BigInteger` and `BigDecimal` classes are immutable: their value never changes, so that they can be safely passed around. All methods that return a `BigInteger` or `BigDecimal` return a new object, leaving the original object unaffected:
$ten = BigInteger::of(10);