diff options
author | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
---|---|---|
committer | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
commit | 1368364469571507b56358e3fe210aaaaea35a07 (patch) | |
tree | b41fc183aa432b16b67a1096881da00cc0b35fd1 /ext/xmlreader | |
parent | 9e05a9ad1310018a6f5797c7e32ae0d0cbd9cb69 (diff) | |
download | php-git-1368364469571507b56358e3fe210aaaaea35a07.tar.gz |
Fix common typos in the source code (Reported in Bug #54065)
# External libraries were excluded
# Thanks eitan at eitanadler dot com for the first patch :)
Diffstat (limited to 'ext/xmlreader')
-rw-r--r-- | ext/xmlreader/php_xmlreader.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/xmlreader/php_xmlreader.c b/ext/xmlreader/php_xmlreader.c index 107d5b09f9..80ce3d7e3a 100644 --- a/ext/xmlreader/php_xmlreader.c +++ b/ext/xmlreader/php_xmlreader.c @@ -859,7 +859,7 @@ PHP_METHOD(xmlreader, next) /* }}} */ /* {{{ proto boolean XMLReader::open(string URI [, string encoding [, int options]]) -Sets the URI that the the XMLReader will parse. */ +Sets the URI that the XMLReader will parse. */ PHP_METHOD(xmlreader, open) { zval *id; @@ -1020,7 +1020,7 @@ PHP_METHOD(xmlreader, setParserProperty) /* }}} */ /* {{{ proto boolean XMLReader::setRelaxNGSchema(string filename) -Sets the string that the the XMLReader will parse. */ +Sets the string that the XMLReader will parse. */ PHP_METHOD(xmlreader, setRelaxNGSchema) { php_xmlreader_set_relaxng_schema(INTERNAL_FUNCTION_PARAM_PASSTHRU, XMLREADER_LOAD_FILE); @@ -1028,7 +1028,7 @@ PHP_METHOD(xmlreader, setRelaxNGSchema) /* }}} */ /* {{{ proto boolean XMLReader::setRelaxNGSchemaSource(string source) -Sets the string that the the XMLReader will parse. */ +Sets the string that the XMLReader will parse. */ PHP_METHOD(xmlreader, setRelaxNGSchemaSource) { php_xmlreader_set_relaxng_schema(INTERNAL_FUNCTION_PARAM_PASSTHRU, XMLREADER_LOAD_STRING); @@ -1042,7 +1042,7 @@ XMLPUBFUN int XMLCALL */ /* {{{ proto boolean XMLReader::XML(string source [, string encoding [, int options]]) -Sets the string that the the XMLReader will parse. */ +Sets the string that the XMLReader will parse. */ PHP_METHOD(xmlreader, XML) { zval *id; |