]> granicus.if.org Git - php/commitdiff
Remove space between function name and open parentheses
authorGabriel Caruso <carusogabriel34@gmail.com>
Wed, 7 Feb 2018 14:22:12 +0000 (12:22 -0200)
committerJoe <krakjoe@php.net>
Thu, 8 Feb 2018 08:57:43 +0000 (09:57 +0100)
ext/gettext/gettext.c
ext/standard/filestat.c

index a02d4b9145e6fda541a2ec017ab009fc401b0b2a..9747502761b2927b2220f69b050bdfd548935971 100644 (file)
@@ -299,7 +299,7 @@ PHP_NAMED_FUNCTION(zif_ngettext)
 #endif
 
 #if HAVE_DNGETTEXT
-/* {{{ proto string dngettext (string domain, string msgid1, string msgid2, int count)
+/* {{{ proto string dngettext(string domain, string msgid1, string msgid2, int count)
    Plural version of dgettext() */
 PHP_NAMED_FUNCTION(zif_dngettext)
 {
@@ -325,7 +325,7 @@ PHP_NAMED_FUNCTION(zif_dngettext)
 #endif
 
 #if HAVE_DCNGETTEXT
-/* {{{ proto string dcngettext (string domain, string msgid1, string msgid2, int n, int category)
+/* {{{ proto string dcngettext(string domain, string msgid1, string msgid2, int n, int category)
    Plural version of dcgettext() */
 PHP_NAMED_FUNCTION(zif_dcngettext)
 {
index a405f0dfdc973bc1e071c2f00e7d514fbb91d6bf..e2b3245e97ec0f354b42d31aba67bc5e8c503425 100644 (file)
@@ -546,7 +546,7 @@ static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) /* {{{ */
 /* }}} */
 
 
-/* {{{ proto bool chown (string filename, mixed user)
+/* {{{ proto bool chown(string filename, mixed user)
    Change file owner */
 PHP_FUNCTION(chown)
 {
@@ -554,7 +554,7 @@ PHP_FUNCTION(chown)
 }
 /* }}} */
 
-/* {{{ proto bool chown (string filename, mixed user)
+/* {{{ proto bool chown(string filename, mixed user)
    Change file owner */
 #if HAVE_LCHOWN
 PHP_FUNCTION(lchown)