summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/gd/gd.c2
-rw-r--r--ext/standard/datetime.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c
index 5d563ada7c..d4830583dd 100644
--- a/ext/gd/gd.c
+++ b/ext/gd/gd.c
@@ -516,7 +516,7 @@ PHP_FUNCTION(imagecreatefromxbm)
}
/* }}} */
-/* {{{ droto int imagecreatefromxpm(string filename)
+/* {{{ todo int imagecreatefromxpm(string filename)
Create a new image from XPM file or URL */
PHP_FUNCTION(imagecreatefromxpm)
{
diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c
index 1b837f79e5..e1344a72e2 100644
--- a/ext/standard/datetime.c
+++ b/ext/standard/datetime.c
@@ -180,7 +180,7 @@ void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm)
RETURN_LONG(seconds);
}
-/* {{{ proto int mktime(int hour, int min, int sec, int mon, int mday, int year)
+/* {{{ proto int mktime(int hour, int min, int sec, int mon, int day, int year)
Get UNIX timestamp for a date */
PHP_FUNCTION(mktime)
{
@@ -188,7 +188,7 @@ PHP_FUNCTION(mktime)
}
/* }}} */
-/* {{{ proto int gmmktime(int hour, int min, int sec, int mon, int mday, int year)
+/* {{{ proto int gmmktime(int hour, int min, int sec, int mon, int day, int year)
Get UNIX timestamp for a GMT date */
PHP_FUNCTION(gmmktime)
{