]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_mir/borrow_check/nll/type_check/liveness/local_use_map.rs
Various minor/cosmetic improvements to code
[rust.git] / src / librustc_mir / borrow_check / nll / type_check / liveness / local_use_map.rs
index 4b39d58cd96a82e3c7479aa84429241bb63908f5..320422c9d332298166d9dd92a3d603ae905a2343 100644 (file)
@@ -23,7 +23,7 @@
     liveness_map: &'me NllLivenessMap,
 
     /// Head of a linked list of **definitions** of each variable --
-    /// definition in this context means assignment, e.g. `x` is
+    /// definition in this context means assignment, e.g., `x` is
     /// defined in `x = y` but not `y`; that first def is the head of
     /// a linked list that lets you enumerate all places the variable
     /// is assigned.