diff options
author | Christian Stocker <chregu@php.net> | 2002-08-15 13:26:32 +0000 |
---|---|---|
committer | Christian Stocker <chregu@php.net> | 2002-08-15 13:26:32 +0000 |
commit | 2126f799b90a23e0cbf809449a51888219a49fa1 (patch) | |
tree | 86c6781745247a81ddcf65c02275ba146c0ab610 /ext/domxml/php_domxml.c | |
parent | c0f40351165df06009a6dd3c903f75ffb66d8e7a (diff) | |
download | php-git-2126f799b90a23e0cbf809449a51888219a49fa1.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 b3385d4db0..025dcd069a 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -3329,7 +3329,7 @@ PHP_FUNCTION(domxml_doc_create_element_ns) } /* }}} */ -/* {{{ proto object domxml_node_add_namespace(string uri, string prefix) +/* {{{ proto bool domxml_node_add_namespace(string uri, string prefix) Adds a namespace declaration to a node */ PHP_FUNCTION(domxml_node_add_namespace) { @@ -3350,7 +3350,7 @@ PHP_FUNCTION(domxml_node_add_namespace) } /* }}} */ -/* {{{ proto object domxml_node_set_namespace(string uri [, string prefix]) +/* {{{ proto void domxml_node_set_namespace(string uri [, string prefix]) Sets the namespace of a node */ PHP_FUNCTION(domxml_node_set_namespace) { |