diff --git a/README.md b/README.md index 88ad7e3d..43ea73af 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Then it can be used passing in numeric values to the `toWords()` method: $numberTransformer->toWords(5120); // outputs "five thousand one hundred twenty" ``` -You can also use the simpler version: +You can also use a static method: ```php NumberToWords::transformNumber('en', 5120); // outputs "five thousand one hundred twenty" @@ -65,7 +65,7 @@ Then it can be used passing in numeric values for amount and ISO 4217 currency i $currencyTransformer->toWords(5099, 'USD'); // outputs "fifty dollars ninety nine cents" ``` -You can also use the simpler version: +You can also use a static method: ```php NumberToWords::transformCurrency('en', 5099, 'USD'); // outputs "fifty dollars ninety nine cents"