Typo fix provided by an anonymous user.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@349120 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
George Peter Banyard 2020-02-04 11:59:59 +00:00
parent 6dad23a963
commit 897636355a

View file

@ -633,7 +633,7 @@ typedef union _zvalue_value {
<section xml:id="internals2.variables.tables">
<title>Working with HashTable</title>
<para>The <code>HashTable</code> structure serves many purposes in PHP and can be found everywhere, a good understanding of it's functionality is a preqrequisite of being a good <code>Hacker</code>.</para>
<para>The <code>HashTable</code> structure serves many purposes in PHP and can be found everywhere, a good understanding of it's functionality is a prerequisite of being a good <code>Hacker</code>.</para>
<para>The <code>HashTable</code> implemented by the engine is a standard <code>HashTable</code>, that is to say, a key =&gt; value based store, where the keys are always strings, whose hashes are calculated with a built in hashing algorithm <code>zend_inline_hash_func(const char* key, uint length)</code>, which results in good distribution, and reasonable usage.</para>