about summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2022-11-20 17:28:34 +0200
committerTshepang Mbambo <tshepang@gmail.com>2022-11-20 17:28:34 +0200
commitbebe5db5178a8444e4517e61f4ded9b612013fd3 (patch)
tree996446af9374a2b1041dba1bdac354b7185064e5 /library/alloc
parent9cdfe03b0601d5328406746a7923a8a4eaa0cf3c (diff)
downloadrust-bebe5db5178a8444e4517e61f4ded9b612013fd3.tar.gz
rust-bebe5db5178a8444e4517e61f4ded9b612013fd3.zip
replace unusual grammar
Diffstat (limited to 'library/alloc')
-rw-r--r--library/alloc/src/collections/btree/map.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/alloc/src/collections/btree/map.rs b/library/alloc/src/collections/btree/map.rs
index 8a771934712..1d9c4460ec9 100644
--- a/library/alloc/src/collections/btree/map.rs
+++ b/library/alloc/src/collections/btree/map.rs
@@ -46,8 +46,8 @@ pub(super) const MIN_LEN: usize = node::MIN_LEN_AFTER_SPLIT;
 /// is done is *very* inefficient for modern computer architectures. In particular, every element
 /// is stored in its own individually heap-allocated node. This means that every single insertion
 /// triggers a heap-allocation, and every single comparison should be a cache-miss. Since these
-/// are both notably expensive things to do in practice, we are forced to at very least reconsider
-/// the BST strategy.
+/// are both notably expensive things to do in practice, we are forced to, at the very least,
+/// reconsider the BST strategy.
 ///
 /// A B-Tree instead makes each node contain B-1 to 2B-1 elements in a contiguous array. By doing
 /// this, we reduce the number of allocations by a factor of B, and improve cache efficiency in