]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/intrinsics.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libcore / intrinsics.rs
index 16f0299c18b9a21f37c0ffec6410503f1c84d2f8..eebb98b5e6d4580727bb8ceacab2204029e897ca 100644 (file)
@@ -52,7 +52,7 @@
 pub use ptr::drop_in_place;
 
 extern "rust-intrinsic" {
-    // NB: These intrinsics take raw pointers because they mutate aliased
+    // N.B., these intrinsics take raw pointers because they mutate aliased
     // memory, which is not valid for either `&` or `&mut`.
 
     /// Stores a value if the current value is the same as the `old` value.
     /// Tells LLVM that this point in the code is not reachable, enabling
     /// further optimizations.
     ///
-    /// NB: This is very different from the `unreachable!()` macro: Unlike the
+    /// N.B., this is very different from the `unreachable!()` macro: Unlike the
     /// macro, which panics when it is executed, it is *undefined behavior* to
     /// reach code marked with this function.
     ///