From c2be3cea12bb75f1c28b74b2ec1f8f2c3939273b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 9 Aug 2016 18:19:10 +0200 Subject: [PATCH] Fix function name --- services/localization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/localization.md b/services/localization.md index 0eca434..8b0c5c4 100644 --- a/services/localization.md +++ b/services/localization.md @@ -53,7 +53,7 @@ The currency code of the localization object is the 3 character ISO4217 code. Th The currency symbol can be placed either in front or at the end of a value. The `Money` class provides a function called `getCurrency()` which returns a localized representation by specifying the thousands and decimal separator as well as the currency symbol and its position. ``` -$money->getcurrency(2, ',', '.', '$', 0); +$money->getCurrency(2, ',', '.', '$', 0); ``` ### DateTime