From 10979e9418cf91e62c7d2b2e30a60bc69c38e2fd Mon Sep 17 00:00:00 2001 From: Cholerae Hu Date: Sun, 16 Feb 2020 15:18:38 +0800 Subject: [PATCH] fix a typo in design.md --- docs/design.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design.md b/docs/design.md index d32df3a0d..efdc1660d 100644 --- a/docs/design.md +++ b/docs/design.md @@ -7,7 +7,7 @@ allocator that has the following characteristics: * Fast, uncontended allocation and deallocation for most objects. Objects are cached, depending on mode, either per-thread, or per-logical-CPU. Most - allocatations do not need to take locks, so there is low contention and good + allocations do not need to take locks, so there is low contention and good scaling for mult-threaded applications. * Flexible use of memory, so freed memory can be reused for different object sizes, or returned to the OS.