Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion library/alloc/src/collections/btree/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,8 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
}

/// Splits the collection into two at the given key. Returns everything after the given key,
/// including the key.
/// including the key. If the key is not present, the split will occur at the nearest
/// greater key, or return an empty map if no such key exists.
///
/// # Examples
///
Expand Down
Loading