[std][BTree] Update ::append docs

This commit is contained in:
tinnamchoi
2025-08-21 19:03:07 +08:00
parent 084e6e7320
commit 002a09ae9e
@@ -1160,6 +1160,10 @@ pub fn retain<F>(&mut self, mut f: F)
///
/// If a key from `other` is already present in `self`, the respective
/// value from `self` will be overwritten with the respective value from `other`.
/// Similar to [`insert`], though, the key is not overwritten,
/// which matters for types that can be `==` without being identical.
///
/// [`insert`]: BTreeMap::insert
///
/// # Examples
///