diff options
author | Stanislav Malyshev <stas@php.net> | 2013-06-10 13:36:41 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-06-10 13:36:41 -0700 |
commit | 84e35fb2e0fcd7400d289e06395c975fc7a77816 (patch) | |
tree | 7a40baf0694a4d6d7d69b809b467c83e12408ea7 /Zend/zend_API.h | |
parent | cf5b3fb16641b6389137cbabbb4fb0f39e409ee0 (diff) | |
parent | 04145dc2aa6eea37f7cd27ffa69ad3b2f52a65da (diff) | |
download | php-git-84e35fb2e0fcd7400d289e06395c975fc7a77816.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
typo fixes (argument)
typo fixes (accommodate, parameter)
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index f10fc91704..ecc8d9acd9 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -465,7 +465,7 @@ ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache; */ ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC); -/** Clear argumens connected with zend_fcall_info *fci +/** Clear arguments connected with zend_fcall_info *fci * If free_mem is not zero then the params array gets free'd as well */ ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem); @@ -503,7 +503,7 @@ ZEND_API int zend_fcall_info_argv(zend_fcall_info *fci TSRMLS_DC, int argc, va_l ZEND_API int zend_fcall_info_argn(zend_fcall_info *fci TSRMLS_DC, int argc, ...); /** Call a function using information created by zend_fcall_info_init()/args(). - * If args is given then those replace the arguement info in fci is temporarily. + * If args is given then those replace the argument info in fci is temporarily. */ ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval, zval *args TSRMLS_DC); |