summaryrefslogtreecommitdiff
path: root/ext/dom/documentfragment.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2015-06-23 15:47:07 -0400
committerRasmus Lerdorf <rasmus@php.net>2015-06-23 15:47:33 -0400
commit41774bceff518c838dd982d6c1e8c95641b26b02 (patch)
treed6e6e43d2e4f588b3aac2cde3bf314f04d1748a1 /ext/dom/documentfragment.c
parentea5c66ec9310430111b48d4589e56cea5c0b5ab0 (diff)
downloadphp-git-41774bceff518c838dd982d6c1e8c95641b26b02.tar.gz
Fix more minor mistakes in the proto comments
Diffstat (limited to 'ext/dom/documentfragment.c')
-rw-r--r--ext/dom/documentfragment.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dom/documentfragment.c b/ext/dom/documentfragment.c
index 9cf0fd5423..05494ea8c3 100644
--- a/ext/dom/documentfragment.c
+++ b/ext/dom/documentfragment.c
@@ -49,7 +49,7 @@ const zend_function_entry php_dom_documentfragment_class_functions[] = {
PHP_FE_END
};
-/* {{{ proto void DOMDocumentFragment::__construct(); */
+/* {{{ proto void DOMDocumentFragment::__construct() */
PHP_METHOD(domdocumentfragment, __construct)
{
@@ -112,7 +112,7 @@ static void php_dom_xmlSetTreeDoc(xmlNodePtr tree, xmlDocPtr doc) /* {{{ */
}
/* }}} */
-/* {{{ proto void DOMDocumentFragment::appendXML(string data); */
+/* {{{ proto void DOMDocumentFragment::appendXML(string data) */
PHP_METHOD(domdocumentfragment, appendXML) {
zval *id;
xmlNode *nodep;