Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknyquist committed Jan 5, 2024
1 parent a91052d commit 17ea46b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h1><a class="anchor" id="codesample_sec"></a>
<div class="ttc" id="astructhashtable__t_html"><div class="ttname"><a href="structhashtable__t.html">hashtable_t</a></div><div class="ttdoc">All data for a single hashtable instance.</div><div class="ttdef"><b>Definition:</b> hashtable_api.h:183</div></div>
</div><!-- fragment --><h1><a class="anchor" id="perftest_sec"></a>
Performance visualization</h1>
<p>The following graph shows the results from a test program which creates a hashtable instance with a 16MB buffer, and inserts items until the buffer is full (each key is a 32-bit unsigned integer, and all values are NULL / 0 bytes).</p>
<p>The following graph shows the results from a test program which creates a hashtable instance with a 32MB buffer, and inserts items until the buffer is full (each key is a 32-bit unsigned integer, and all values are NULL / 0 bytes).</p>
<p>After every 2,000 items inserted, the test program performs the following checks;</p>
<ul>
<li>Divide the time taken for the last 2,000 item insertions, by 2,000, to get the average insertion time</li>
Expand Down
2 changes: 1 addition & 1 deletion hashtable_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* \section perftest_sec Performance visualization
*
* The following graph shows the results from a test program which creates a hashtable
* instance with a 16MB buffer, and inserts items until the buffer is full (each key
* instance with a 32MB buffer, and inserts items until the buffer is full (each key
* is a 32-bit unsigned integer, and all values are NULL / 0 bytes).
*
* After every 2,000 items inserted, the test program performs the following checks;
Expand Down

0 comments on commit 17ea46b

Please sign in to comment.