From a6ec1c869e1abe3eb70616d19d3e553339449636 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Thu, 12 Nov 2015 10:51:32 -0800 Subject: [PATCH] Fix a comment. --- include/jemalloc/internal/tcache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/jemalloc/internal/tcache.h b/include/jemalloc/internal/tcache.h index c2921405..aa73060a 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. */