From 6c094344b6883f4b643a4e93690d58eff34796e2 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Mon, 7 Sep 2015 20:14:50 +0200 Subject: [PATCH] Fix typo in README This closes #1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2b5ca2..453a6d8 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ echo $ten->multipliedBy(3); // 30 The methods can be chained for better readability: ```php -echo BigInteger::of(10)->plus(5)->multipliedBy(3); // 30 +echo BigInteger::of(10)->plus(5)->multipliedBy(3); // 45 ``` #### Parameter types @@ -234,4 +234,4 @@ echo BigRational::of('123/456')->dividedBy('9/8'); // 984/4104 even if these machines do not share the same set of PHP extensions. For example, serializing on a machine with GMP support and unserializing on a machine that does not have this extension -installed will still work as expected. \ No newline at end of file +installed will still work as expected.