tony2001 Sun Dec 18 21:17:42 2005 EDT
Modified files:
/php-src/ext/dom node.c
/php-src/ext/xmlreader php_xmlreader.c
/php-src/ext/xmlrpc/libxmlrpc xml_to_soap.c
/php-src/ext/reflection php_reflection.c
Log:
MFB: fix typo
http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/node.c?r1=1.38&r2=1.39&diff_format=u
Index: php-src/ext/dom/node.c
diff -u php-src/ext/dom/node.c:1.38 php-src/ext/dom/node.c:1.39
--- php-src/ext/dom/node.c:1.38 Fri Aug 12 11:29:29 2005
+++ php-src/ext/dom/node.c Sun Dec 18 21:17:42 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: node.c,v 1.38 2005/08/12 11:29:29 dmitry Exp $ */
+/* $Id: node.c,v 1.39 2005/12/18 21:17:42 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1113,7 +1113,7 @@
RETURN_FALSE;
}
- /* check for the old child and wether the new child is already a child
*/
+ /* check for the old child and whether the new child is already a child
*/
while (children) {
if (children == oldchild) {
foundoldchild = 1;
http://cvs.php.net/viewcvs.cgi/php-src/ext/xmlreader/php_xmlreader.c?r1=1.21&r2=1.22&diff_format=u
Index: php-src/ext/xmlreader/php_xmlreader.c
diff -u php-src/ext/xmlreader/php_xmlreader.c:1.21
php-src/ext/xmlreader/php_xmlreader.c:1.22
--- php-src/ext/xmlreader/php_xmlreader.c:1.21 Sun Dec 18 16:00:02 2005
+++ php-src/ext/xmlreader/php_xmlreader.c Sun Dec 18 21:17:42 2005
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_xmlreader.c,v 1.21 2005/12/18 16:00:02 zeev Exp $ */
+/* $Id: php_xmlreader.c,v 1.22 2005/12/18 21:17:42 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -578,7 +578,7 @@
/* }}} */
/* {{{ proto boolean XMLReader::getParserProperty(int property)
-Indicates wether given property (one of the parser option constants) is set or
not on parser */
+Indicates whether given property (one of the parser option constants) is set
or not on parser */
PHP_METHOD(xmlreader, getParserProperty)
{
zval *id;
http://cvs.php.net/viewcvs.cgi/php-src/ext/xmlrpc/libxmlrpc/xml_to_soap.c?r1=1.4&r2=1.5&diff_format=u
Index: php-src/ext/xmlrpc/libxmlrpc/xml_to_soap.c
diff -u php-src/ext/xmlrpc/libxmlrpc/xml_to_soap.c:1.4
php-src/ext/xmlrpc/libxmlrpc/xml_to_soap.c:1.5
--- php-src/ext/xmlrpc/libxmlrpc/xml_to_soap.c:1.4 Tue Apr 27 17:33:59 2004
+++ php-src/ext/xmlrpc/libxmlrpc/xml_to_soap.c Sun Dec 18 21:17:42 2005
@@ -165,7 +165,7 @@
return soapType;
}
-/* determines wether a node is a fault or not, and of which type:
+/* determines whether a node is a fault or not, and of which type:
* 0 = not a fault,
* 1 = xmlrpc style fault
* 2 = soap style fault.
http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.197&r2=1.198&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.197
php-src/ext/reflection/php_reflection.c:1.198
--- php-src/ext/reflection/php_reflection.c:1.197 Tue Dec 6 02:24:45 2005
+++ php-src/ext/reflection/php_reflection.c Sun Dec 18 21:17:42 2005
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_reflection.c,v 1.197 2005/12/06 02:24:45 sniper Exp $ */
+/* $Id: php_reflection.c,v 1.198 2005/12/18 21:17:42 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -2790,7 +2790,7 @@
/* }}} */
/* {{{ proto public bool ReflectionClass::hasMethod(string name)
- Returns wether a method exists or not */
+ Returns whether a method exists or not */
ZEND_METHOD(reflection_class, hasMethod)
{
reflection_object *intern;
@@ -2893,7 +2893,7 @@
/* }}} */
/* {{{ proto public bool ReflectionClass::hasProperty(string name)
- Returns wether a property exists or not */
+ Returns whether a property exists or not */
ZEND_METHOD(reflection_class, hasProperty)
{
reflection_object *intern;
@@ -3028,7 +3028,7 @@
/* }}} */
/* {{{ proto public bool ReflectionClass::hasConstant(string name)
- Returns wether a constant exists or not */
+ Returns whether a constant exists or not */
ZEND_METHOD(reflection_class, hasConstant)
{
reflection_object *intern;
@@ -4272,7 +4272,7 @@
php_info_print_table_start();
php_info_print_table_header(2, "Reflection", "enabled");
- php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.197
2005/12/06 02:24:45 sniper Exp $");
+ php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.198
2005/12/18 21:17:42 tony2001 Exp $");
php_info_print_table_end();
} /* }}} */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php