From: Antony Dovgal Date: Sun, 18 Dec 2005 21:17:07 +0000 (+0000) Subject: tix fypo X-Git-Tag: php-5.1.2RC1~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8aedeb8513e49e0f2adeebf0e286679ef3c1585a;p=php tix fypo --- diff --git a/ext/dom/node.c b/ext/dom/node.c index cd9523905c..bb9ff3532e 100644 --- a/ext/dom/node.c +++ b/ext/dom/node.c @@ -1113,7 +1113,7 @@ PHP_FUNCTION(dom_node_replace_child) 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; diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index a2e5f035b8..f8c752e512 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2781,7 +2781,7 @@ ZEND_METHOD(reflection_class, getConstructor) /* }}} */ /* {{{ 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; @@ -2880,7 +2880,7 @@ ZEND_METHOD(reflection_class, getMethods) /* }}} */ /* {{{ 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; @@ -3014,7 +3014,7 @@ ZEND_METHOD(reflection_class, getProperties) /* }}} */ /* {{{ 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; diff --git a/ext/xmlreader/php_xmlreader.c b/ext/xmlreader/php_xmlreader.c index 76be3b078b..e92d91ff39 100644 --- a/ext/xmlreader/php_xmlreader.c +++ b/ext/xmlreader/php_xmlreader.c @@ -580,7 +580,7 @@ PHP_METHOD(xmlreader, getAttributeNs) /* }}} */ /* {{{ 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; diff --git a/ext/xmlrpc/libxmlrpc/xml_to_soap.c b/ext/xmlrpc/libxmlrpc/xml_to_soap.c index 8390f06e8e..a30b3c11f7 100644 --- a/ext/xmlrpc/libxmlrpc/xml_to_soap.c +++ b/ext/xmlrpc/libxmlrpc/xml_to_soap.c @@ -165,7 +165,7 @@ static const char* get_array_soap_type(XMLRPC_VALUE node) { 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.