summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-07-15 13:00:41 +0000
committerEgon Schmid <eschmid@php.net>2000-07-15 13:00:41 +0000
commit9194a0fb12a5ca579e63cbdccb5c2740c1fdd869 (patch)
treef6ceb2da50e4d8e3b8f04fb0019b58ee142192bc /ext/domxml/php_domxml.c
parent6d2d3e7f60f1164024cf22b66e138156608ba720 (diff)
downloadphp-git-9194a0fb12a5ca579e63cbdccb5c2740c1fdd869.tar.gz
Some cosmetic changes.
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 62ef4c5ea1..02642d4a9b 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Authors: |
+ | Authors: Uwe Steinmann <steinm@php.net> |
+----------------------------------------------------------------------+
*/
@@ -956,7 +956,7 @@ PHP_FUNCTION(domxml_dumpmem)
/* }}} */
/* {{{ proto class xmldoc(string xmldoc)
- Creates dom object of xml document */
+ Creates DOM object of XML document */
PHP_FUNCTION(xmldoc)
{
zval *arg;
@@ -987,7 +987,7 @@ PHP_FUNCTION(xmldoc)
/* }}} */
/* {{{ proto class xmldocfile(string filename)
- Creates dom object of xml document in file*/
+ Creates DOM object of XML document in file*/
PHP_FUNCTION(xmldocfile)
{
zval *arg;
@@ -1237,7 +1237,7 @@ static int node_attributes(zval **attributes, xmlNode *nodep)
return count;
}
-/* {{{ proto string domxml_children([int node])
+/* {{{ proto string node_children([int node])
Returns list of children nodes */
static int node_children(zval **children, xmlNode *nodep)
{
@@ -1299,7 +1299,7 @@ static int node_children(zval **children, xmlNode *nodep)
/* }}} */
/* {{{ proto class xmltree(string xmldoc)
- Create a tree of php objects from an xml document */
+ Create a tree of PHP objects from an XML document */
PHP_FUNCTION(xmltree)
{
zval *arg;