merge: fix copy-paste error in doc comment for adds()

This commit is contained in:
Yuya Nishihara 2023-10-18 03:18:49 +09:00
parent f6d85c51cd
commit 99e6ff493a

View file

@ -165,7 +165,7 @@ impl<T> Merge<T> {
&self.removes
}
/// The removed values, also called positive terms.
/// The added values, also called positive terms.
pub fn adds(&self) -> &[T] {
&self.adds
}