From aed7f7c8189eb225fabe909d059054bb3ef14540 Mon Sep 17 00:00:00 2001 From: Dezhi Wu Date: Thu, 5 May 2022 22:07:13 +0800 Subject: [PATCH] Fix a typo --- src/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map.rs b/src/map.rs index 146eb6a..bf8f4dc 100644 --- a/src/map.rs +++ b/src/map.rs @@ -193,7 +193,7 @@ impl Map { } } - /// Moves all elements from other into Self, leaving other empty. + /// Moves all elements from other into self, leaving other empty. #[inline] pub fn append(&mut self, other: &mut Self) { #[cfg(feature = "preserve_order")]