summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2015-11-12 18:51:32 (GMT)
committerJason Evans <je@fb.com>2015-11-12 18:51:32 (GMT)
commita6ec1c869e1abe3eb70616d19d3e553339449636 (patch)
tree30a0a77b267aac523f3ed33f063c14cc958800b1 /include
parentea59ebf4d3c2a5749e170cc45c294e04129e5b49 (diff)
downloadjemalloc-a6ec1c869e1abe3eb70616d19d3e553339449636.zip
jemalloc-a6ec1c869e1abe3eb70616d19d3e553339449636.tar.gz
jemalloc-a6ec1c869e1abe3eb70616d19d3e553339449636.tar.bz2
Fix a comment.
Diffstat (limited to 'include')
-rw-r--r--include/jemalloc/internal/tcache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/tcache.h b/include/jemalloc/internal/tcache.h
index c292140..aa73060 100644
--- a/include/jemalloc/internal/tcache.h
+++ b/include/jemalloc/internal/tcache.h
@@ -74,7 +74,7 @@ struct tcache_bin_s {
* To make use of adjacent cacheline prefetch, the items in the avail
* stack goes to higher address for newer allocations. avail points
* just above the available space, which means that
- * avail[-ncached, ... 1] are available items and the lowest item will
+ * avail[-ncached, ... -1] are available items and the lowest item will
* be allocated first.
*/
void **avail; /* Stack of available objects. */