From a39d0e18e1e56da8d82760528376fb797c161552 Mon Sep 17 00:00:00 2001 From: denisdulici Date: Sat, 9 Dec 2017 10:25:06 +0300 Subject: [PATCH] readme update --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4ce7794..0b0f6a0 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,10 @@ You can change the currencies information of your app from `config/money.php` fi ```php use Akaunting\Money\Money; -echo Money::USD(500); // '$ 5.00' unconverted -echo new Money(500, new Currency('USD')); // '$ 5.00' unconverted -echo Money::USD(500, true); // '$ 500.00' converted -echo new Money(500, new Currency('USD'), true); // '$ 500.00' converted +echo Money::USD(500); // '$5.00' unconverted +echo new Money(500, new Currency('USD')); // '$5.00' unconverted +echo Money::USD(500, true); // '$500.00' converted +echo new Money(500, new Currency('USD'), true); // '$500.00' converted ``` ### Advanced