summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-12-18 21:17:07 +0000
committerAntony Dovgal <tony2001@php.net>2005-12-18 21:17:07 +0000
commit8aedeb8513e49e0f2adeebf0e286679ef3c1585a (patch)
treef03e0ddbac20536fd5d99273ad8381b399e617b8
parent0d38bc9f809d5726964d6bdf3f3cbf104fd31117 (diff)
downloadphp-git-8aedeb8513e49e0f2adeebf0e286679ef3c1585a.tar.gz
tix fypo
-rw-r--r--ext/dom/node.c2
-rw-r--r--ext/reflection/php_reflection.c6
-rw-r--r--ext/xmlreader/php_xmlreader.c2
-rw-r--r--ext/xmlrpc/libxmlrpc/xml_to_soap.c2
4 files changed, 6 insertions, 6 deletions
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.