]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_mir/transform/check_unsafety.rs
Various minor/cosmetic improvements to code
[rust.git] / src / librustc_mir / transform / check_unsafety.rs
index 660892c0a5f889aee832c1347e475ee498b46952..6af29b74c1c4fab1e535a8b8ee492e47202b66ad 100644 (file)
@@ -497,7 +497,7 @@ fn unsafety_check_result<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId)
 {
     debug!("unsafety_violations({:?})", def_id);
 
-    // NB: this borrow is valid because all the consumers of
+    // N.B., this borrow is valid because all the consumers of
     // `mir_built` force this.
     let mir = &tcx.mir_built(def_id).borrow();