summaryrefslogtreecommitdiff
path: root/ext/soap/php_encoding.c
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-01-16 19:04:42 +0100
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-01-16 19:14:31 +0100
commitafdaa91170a1f7b0387cf577d957d4d6c015c136 (patch)
tree90957242274bd0b0e8669b1e580817f280c944a2 /ext/soap/php_encoding.c
parent1fa6f03265467ec1b8b9f898182792ec936dbd74 (diff)
downloadphp-git-afdaa91170a1f7b0387cf577d957d4d6c015c136.tar.gz
Fix #78880: Final spelling fixes
Diffstat (limited to 'ext/soap/php_encoding.c')
-rw-r--r--ext/soap/php_encoding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c
index 0faa6e9d57..4a7dc2ad80 100644
--- a/ext/soap/php_encoding.c
+++ b/ext/soap/php_encoding.c
@@ -2717,7 +2717,7 @@ static zval *to_zval_map(zval *ret, encodeTypePtr type, xmlNodePtr data)
} else if (Z_TYPE(key) == IS_LONG) {
zend_hash_index_update(Z_ARRVAL_P(ret), Z_LVAL(key), &value);
} else {
- soap_error0(E_ERROR, "Encoding: Can't decode apache map, only Strings or Longs are allowd as keys");
+ soap_error0(E_ERROR, "Encoding: Can't decode apache map, only Strings or Longs are allowed as keys");
}
zval_ptr_dtor(&key);
}