From: Antony Dovgal Date: Sun, 18 Dec 2005 21:17:42 +0000 (+0000) Subject: MFB: fix typo X-Git-Tag: RELEASE_1_0_4~326 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e23794cb8324a3ea4900e36cfafa637a7817259;p=php MFB: fix typo --- diff --git a/ext/dom/node.c b/ext/dom/node.c index 2ff6ebcee6..9be281191c 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 bd7417c835..d8f8bc6b60 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2790,7 +2790,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; @@ -2893,7 +2893,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; @@ -3028,7 +3028,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 ad45902c9c..ccf3db2690 100644 --- a/ext/xmlreader/php_xmlreader.c +++ b/ext/xmlreader/php_xmlreader.c @@ -578,7 +578,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.