]> granicus.if.org Git - php/commitdiff
tix fypo
authorAntony Dovgal <tony2001@php.net>
Sun, 18 Dec 2005 21:17:07 +0000 (21:17 +0000)
committerAntony Dovgal <tony2001@php.net>
Sun, 18 Dec 2005 21:17:07 +0000 (21:17 +0000)
ext/dom/node.c
ext/reflection/php_reflection.c
ext/xmlreader/php_xmlreader.c
ext/xmlrpc/libxmlrpc/xml_to_soap.c

index cd9523905cbffb9276197819e61b001a82aa34ce..bb9ff3532ee64af1466c180fbb69e041202d7c20 100644 (file)
@@ -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;
index a2e5f035b859bda7c11ed459d386cee87153f296..f8c752e5127fa22e410651e70dc949d032278125 100644 (file)
@@ -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;
index 76be3b078bfa98e89004bb55e2332f0dfb435dbb..e92d91ff3992f2f5b509003c50f12c266d517e8b 100644 (file)
@@ -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;
index 8390f06e8e2f33ad8234f600fb80647d5aa6982b..a30b3c11f73442ff9f9e0ad067610482151d26c8 100644 (file)
@@ -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.