summaryrefslogtreecommitdiff
path: root/Zend/zend_hash.h
diff options
context:
space:
mode:
authorTyson Andre <tysonandre775@hotmail.com>2019-02-18 11:35:35 -0500
committerPeter Kokot <peterkokot@gmail.com>2019-02-18 17:56:28 +0100
commitda3316ff0f03f5fccb3a343d31f8cc915da7fa5d (patch)
tree7015a468b42a47b31fe6579f8ef79836f70bf26c /Zend/zend_hash.h
parent8588a45851f32dea8529aa3045455d6cfa8f5a60 (diff)
downloadphp-git-da3316ff0f03f5fccb3a343d31f8cc915da7fa5d.tar.gz
Fix typos in code comments in Zend/ [skip ci]
Diffstat (limited to 'Zend/zend_hash.h')
-rw-r--r--Zend/zend_hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h
index 6cfa7e8821..0cc34ddd47 100644
--- a/Zend/zend_hash.h
+++ b/Zend/zend_hash.h
@@ -168,7 +168,7 @@ ZEND_API int ZEND_FASTCALL zend_hash_str_del_ind(HashTable *ht, const char *key,
ZEND_API int ZEND_FASTCALL zend_hash_index_del(HashTable *ht, zend_ulong h);
ZEND_API void ZEND_FASTCALL zend_hash_del_bucket(HashTable *ht, Bucket *p);
-/* Data retreival */
+/* Data retrieval */
ZEND_API zval* ZEND_FASTCALL zend_hash_find(const HashTable *ht, zend_string *key);
ZEND_API zval* ZEND_FASTCALL zend_hash_str_find(const HashTable *ht, const char *key, size_t len);
ZEND_API zval* ZEND_FASTCALL zend_hash_index_find(const HashTable *ht, zend_ulong h);
@@ -1063,7 +1063,7 @@ static zend_always_inline void *zend_hash_get_current_data_ptr_ex(HashTable *ht,
_val = _z;
/* The following macros are useful to insert a sequence of new elements
- * of packed array. They may be use insted of series of
+ * of packed array. They may be used instead of series of
* zend_hash_next_index_insert_new()
* (HashTable must have enough free buckets).
*/