about summary refs log tree commit diff
path: root/compiler/rustc_mir_dataflow/src
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2024-10-23 02:45:24 -0700
committerJosh Triplett <josh@joshtriplett.org>2024-10-23 02:45:24 -0700
commitecdc2441b6a96603dd7188652adf86e06c2dc513 (patch)
treeba13d10e763f5bc6ec593c7551644b632a50cfa3 /compiler/rustc_mir_dataflow/src
parent9abfcb49002b82f46ad66ceb0b26cee8be2dc658 (diff)
downloadrust-ecdc2441b6a96603dd7188652adf86e06c2dc513.tar.gz
rust-ecdc2441b6a96603dd7188652adf86e06c2dc513.zip
"innermost", "outermost", "leftmost", and "rightmost" don't need hyphens
These are all standard dictionary words and don't require hyphenation.
Diffstat (limited to 'compiler/rustc_mir_dataflow/src')
-rw-r--r--compiler/rustc_mir_dataflow/src/value_analysis.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir_dataflow/src/value_analysis.rs b/compiler/rustc_mir_dataflow/src/value_analysis.rs
index faee40faa3f..d0f62bd82d1 100644
--- a/compiler/rustc_mir_dataflow/src/value_analysis.rs
+++ b/compiler/rustc_mir_dataflow/src/value_analysis.rs
@@ -1177,7 +1177,7 @@ struct PlaceInfo<'tcx> {
     /// The projection used to go from parent to this node (only None for root).
     proj_elem: Option<TrackElem>,
 
-    /// The left-most child.
+    /// The leftmost child.
     first_child: Option<PlaceIndex>,
 
     /// Index of the sibling to the right of this node.