diff options
| author | Rasmus Lerdorf <rasmus@php.net> | 2015-06-23 17:46:07 -0400 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@php.net> | 2015-06-23 17:46:20 -0400 |
| commit | 28d7bb97a11c8eb55d568cb095517861c2e33d45 (patch) | |
| tree | a2d1ec4e14b99fb1aaeca2fcdbd3776073fe1850 /ext/standard/var.c | |
| parent | 2d2bd2db971d4a3d9447418ec47dc79b1a782c95 (diff) | |
| download | php-git-28d7bb97a11c8eb55d568cb095517861c2e33d45.tar.gz | |
Fix more proto comments
Diffstat (limited to 'ext/standard/var.c')
| -rw-r--r-- | ext/standard/var.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/var.c b/ext/standard/var.c index fc6be9234a..2870821fad 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -1054,7 +1054,7 @@ PHP_FUNCTION(unserialize) } /* }}} */ -/* {{{ proto int memory_get_usage([real_usage]) +/* {{{ proto int memory_get_usage([bool real_usage]) Returns the allocated by PHP memory */ PHP_FUNCTION(memory_get_usage) { zend_bool real_usage = 0; @@ -1067,7 +1067,7 @@ PHP_FUNCTION(memory_get_usage) { } /* }}} */ -/* {{{ proto int memory_get_peak_usage([real_usage]) +/* {{{ proto int memory_get_peak_usage([bool real_usage]) Returns the peak allocated by PHP memory */ PHP_FUNCTION(memory_get_peak_usage) { zend_bool real_usage = 0; |
