We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00d5e42 commit b1b4c6cCopy full SHA for b1b4c6c
library/alloc/src/collections/btree/map.rs
@@ -55,7 +55,7 @@ pub(super) const MIN_LEN: usize = node::MIN_LEN_AFTER_SPLIT;
55
/// performance on *small* nodes of elements which are cheap to compare. However in the future we
56
/// would like to further explore choosing the optimal search strategy based on the choice of B,
57
/// and possibly other factors. Using linear search, searching for a random element is expected
58
-/// to take O(B * log(n)) comparisons, which is generally worse than a BST. In practice,
+/// to take B * log(n) comparisons, which is generally worse than a BST. In practice,
59
/// however, performance is excellent.
60
///
61
/// It is a logic error for a key to be modified in such a way that the key's ordering relative to
0 commit comments