summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2018-03-06 13:22:39 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2018-03-06 13:22:39 +0100
commita98eb1ec2cf710e1c6e9b5ec319b699022aa68bd (patch)
treed7e6377e1834417200c291d28ec3ab9a2dd8ec48
parentb47b3596ef875ccd8ac68d4aa2868424bcb0fe99 (diff)
downloadphp-git-a98eb1ec2cf710e1c6e9b5ec319b699022aa68bd.tar.gz
[ci skip] Fix reference notation in protos
-rw-r--r--ext/intl/formatter/formatter_parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/formatter/formatter_parse.c b/ext/intl/formatter/formatter_parse.c
index e5aff11456..73909f5b9a 100644
--- a/ext/intl/formatter/formatter_parse.c
+++ b/ext/intl/formatter/formatter_parse.c
@@ -118,9 +118,9 @@ PHP_FUNCTION( numfmt_parse )
}
/* }}} */
-/* {{{ proto float NumberFormatter::parseCurrency( string $str, string $&currency[, int $&position] )
+/* {{{ proto float NumberFormatter::parseCurrency( string $str, string &$currency[, int &$position] )
* Parse a number as currency. }}} */
-/* {{{ proto float numfmt_parse_currency( NumberFormatter $nf, string $str, string $&currency[, int $&position] )
+/* {{{ proto float numfmt_parse_currency( NumberFormatter $nf, string $str, string &$currency[, int &$position] )
* Parse a number as currency.
*/
PHP_FUNCTION( numfmt_parse_currency )