Skip to content

Commit

Permalink
fix typo in btree/vec doc: Self -> self
Browse files Browse the repository at this point in the history
  • Loading branch information
Veeupup committed Dec 29, 2021
1 parent b70cc64 commit 249eb1c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion library/alloc/src/collections/btree/map.rs
Expand Up @@ -979,7 +979,7 @@ impl<K, V> BTreeMap<K, V> {
self.drain_filter(|k, v| !f(k, v));
}

/// Moves all elements from `other` into `Self`, leaving `other` empty.
/// Moves all elements from `other` into `self`, leaving `other` empty.
///
/// # Examples
///
Expand Down
2 changes: 1 addition & 1 deletion library/alloc/src/collections/btree/set.rs
Expand Up @@ -892,7 +892,7 @@ impl<T> BTreeSet<T> {
self.drain_filter(|v| !f(v));
}

/// Moves all elements from `other` into `Self`, leaving `other` empty.
/// Moves all elements from `other` into `self`, leaving `other` empty.
///
/// # Examples
///
Expand Down
4 changes: 2 additions & 2 deletions library/alloc/src/vec/mod.rs
Expand Up @@ -1755,7 +1755,7 @@ impl<T, A: Allocator> Vec<T, A> {
}
}

/// Moves all the elements of `other` into `Self`, leaving `other` empty.
/// Moves all the elements of `other` into `self`, leaving `other` empty.
///
/// # Panics
///
Expand All @@ -1780,7 +1780,7 @@ impl<T, A: Allocator> Vec<T, A> {
}
}

/// Appends elements to `Self` from other buffer.
/// Appends elements to `self` from other buffer.
#[cfg(not(no_global_oom_handling))]
#[inline]
unsafe fn append_elements(&mut self, other: *const [T]) {
Expand Down

0 comments on commit 249eb1c

Please sign in to comment.