From be0cb1a965c3b8904060e32db5bdbadb7833c274 Mon Sep 17 00:00:00 2001 From: greg Date: Mon, 18 Mar 2019 21:26:53 -0400 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c681eb..744f683 100644 --- a/README.md +++ b/README.md @@ -68,8 +68,10 @@ Key points: - The `parallel` hash maps are preferred when you have a few hash maps that will store a very large number of values. The `non-parallel` hash maps are preferred if you have a large number of hash maps, each storing a relatively small number of values. - The benefits of the `parallel` hash maps are: - a. reduced peak memory usage (when resizing), and - b. multithreading support (and inherent internal parallelism) + +... a. reduced peak memory usage (when resizing), and + +... b. multithreading support (and inherent internal parallelism)