]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/ffi.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libcore / ffi.rs
index edeb3b0d368b3077b4e7982c4a46a3ab5bf2a05a..1dbf03923e11bc8532c2cdd05411aa4a76d08c5e 100644 (file)
@@ -18,7 +18,7 @@
 ///
 /// [`!`]: ../../std/primitive.never.html
 /// [pointer]: ../../std/primitive.pointer.html
-// NB: For LLVM to recognize the void pointer type and by extension
+// N.B., for LLVM to recognize the void pointer type and by extension
 //     functions like malloc(), we need to have it represented as i8* in
 //     LLVM bitcode. The enum used here ensures this and prevents misuse
 //     of the "raw" type by only having private variants.. We need two