diff --git a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php index a257e36947d0..e0c6c236adc8 100644 --- a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php +++ b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php @@ -484,7 +484,7 @@ public function getTextAttribute($attr) * @param string $currency Parameter to receive the currency name (reference) * @param int $position Offset to begin the parsing on return this value will hold the offset at which the parsing ended * - * @return bool|string The parsed numeric value of false on error + * @return bool|string The parsed numeric value or false on error * * @see http://www.php.net/manual/en/numberformatter.parsecurrency.php * @@ -502,7 +502,7 @@ public function parseCurrency($value, &$currency, &$position = null) * @param int $type Type of the formatting, one of the format type constants. NumberFormatter::TYPE_DOUBLE by default. * @param int $position Offset to begin the parsing on return this value will hold the offset at which the parsing ended * - * @return int|float|false The parsed value of false on error + * @return int|float|false The parsed value or false on error * * @see http://www.php.net/manual/en/numberformatter.parse.php */