diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2002-01-04 14:10:05 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2002-01-04 14:10:05 +0000 |
commit | e69e9be2891a55e4c4acdb7c9b1884022414c12f (patch) | |
tree | ff75bbf988cb1194b3b9f8142d048c55dd635aad /ext/domxml/php_domxml.c | |
parent | 5560c7a6865c0f646bbd489b46b297eab69035ab (diff) | |
download | php-git-e69e9be2891a55e4c4acdb7c9b1884022414c12f.tar.gz |
proto fixes
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 405f04fd1d..a6a3c1f81b 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -2850,7 +2850,7 @@ PHP_FUNCTION(xpath_eval) /* }}} */ /* {{{ proto int xpath_eval_expression([int xpathctx_handle,] string str) - Evaluates the XPath Location Path in the given string */ + Evaluates the XPath expression in the given string */ PHP_FUNCTION(xpath_eval_expression) { php_xpathptr_eval(INTERNAL_FUNCTION_PARAM_PASSTHRU, PHP_XPATH, 1); @@ -2869,7 +2869,7 @@ PHP_FUNCTION(xptr_eval) #endif /* LIBXML_XPTR_ENABLED */ /* {{{ proto string domxml_version(void) - Dumps document into string */ + Get XML library version */ PHP_FUNCTION(domxml_version) { RETURN_STRING(LIBXML_DOTTED_VERSION, 1); |