Skip to content

Commit ded2a0a

Browse files
authored
Rollup merge of rust-lang#132060 - joshtriplett:innermost-outermost, r=jieyouxu
"innermost", "outermost", "leftmost", and "rightmost" don't need hyphens These are all standard dictionary words and don't require hyphenation. ----- Encountered an instance of this in error messages and it bugged me, so I figured I'd fix it across the entire codebase.
2 parents e62b2cc + 728a8d7 commit ded2a0a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

alloc/src/collections/btree/append.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl<K, V> Root<K, V> {
7979
}
8080
open_node.push(key, value, right_tree);
8181

82-
// Go down to the right-most leaf again.
82+
// Go down to the rightmost leaf again.
8383
cur_node = open_node.forget_type().last_leaf_edge().into_node();
8484
}
8585

alloc/src/collections/btree/fix.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl<K, V> Root<K, V> {
102102
pub fn fix_right_border_of_plentiful(&mut self) {
103103
let mut cur_node = self.borrow_mut();
104104
while let Internal(internal) = cur_node.force() {
105-
// Check if right-most child is underfull.
105+
// Check if rightmost child is underfull.
106106
let mut last_kv = internal.last_kv().consider_for_balancing();
107107
debug_assert!(last_kv.left_child_len() >= MIN_LEN * 2);
108108
let right_child_len = last_kv.right_child_len();

alloc/src/collections/btree/node.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,7 @@ impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V> {
15211521
right_node.val_area_mut(..count - 1),
15221522
);
15231523

1524-
// Move the left-most stolen pair to the parent.
1524+
// Move the leftmost stolen pair to the parent.
15251525
let k = left_node.key_area_mut(new_left_len).assume_init_read();
15261526
let v = left_node.val_area_mut(new_left_len).assume_init_read();
15271527
let (k, v) = self.parent.replace_kv(k, v);
@@ -1570,7 +1570,7 @@ impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V> {
15701570

15711571
// Move leaf data.
15721572
{
1573-
// Move the right-most stolen pair to the parent.
1573+
// Move the rightmost stolen pair to the parent.
15741574
let k = right_node.key_area_mut(count - 1).assume_init_read();
15751575
let v = right_node.val_area_mut(count - 1).assume_init_read();
15761576
let (k, v) = self.parent.replace_kv(k, v);

core/src/iter/adapters/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub use self::{
7171
/// this can be useful for specializing [`FromIterator`] implementations or recovering the
7272
/// remaining elements after an iterator has been partially exhausted.
7373
///
74-
/// Note that implementations do not necessarily have to provide access to the inner-most
74+
/// Note that implementations do not necessarily have to provide access to the innermost
7575
/// source of a pipeline. A stateful intermediate adapter might eagerly evaluate a part
7676
/// of the pipeline and expose its internal storage as source.
7777
///

0 commit comments

Comments
 (0)