diff options
author | Tyson Andre <tysonandre775@hotmail.com> | 2019-10-26 23:44:36 -0400 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-10-28 11:44:08 +0100 |
commit | 9d48bf5152295fb63ab5da8570c9b2fd73aa2cf7 (patch) | |
tree | 2d35af93d1e9db43e1fc437583daf79d8a6423bb /Zend/zend_alloc.c | |
parent | 742aaaa150952221cffece991a346f2c3166fcd2 (diff) | |
download | php-git-9d48bf5152295fb63ab5da8570c9b2fd73aa2cf7.tar.gz |
Fix miscellaneous typos in docs and error messages
Closes GH-4863.
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r-- | Zend/zend_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 21ccf85049..982bb03874 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -260,7 +260,7 @@ struct _zend_mm_heap { int peak_chunks_count; /* peak number of allocated chunks for current request */ int cached_chunks_count; /* number of cached chunks */ double avg_chunks_count; /* average number of chunks allocated per request */ - int last_chunks_delete_boundary; /* numer of chunks after last deletion */ + int last_chunks_delete_boundary; /* number of chunks after last deletion */ int last_chunks_delete_count; /* number of deletion over the last boundary */ #if ZEND_MM_CUSTOM union { |