diff --git a/docs/index.html b/docs/index.html
index fac3be1..f7580fd 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -152,7 +152,7 @@
All data for a single hashtable instance.
Definition: hashtable_api.h:183
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 is a 32-bit unsigned integer, and all values are NULL / 0 bytes).
+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).
After every 2,000 items inserted, the test program performs the following checks;
- Divide the time taken for the last 2,000 item insertions, by 2,000, to get the average insertion time
diff --git a/hashtable_api.h b/hashtable_api.h
index 1c83938..8b861bf 100644
--- a/hashtable_api.h
+++ b/hashtable_api.h
@@ -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;