From 590850fe29cc15dcc6981a32efd275488de4eb20 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sat, 2 Feb 2019 11:16:32 +0100 Subject: [PATCH] fix some minor typos --- .../Component/Intl/NumberFormatter/NumberFormatter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php index a257e36947..e0c6c236ad 100644 --- a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php +++ b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php @@ -484,7 +484,7 @@ class NumberFormatter * @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 @@ class NumberFormatter * @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 */