about summary refs log tree commit diff
path: root/src/libcore/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/ffi.rs')
-rw-r--r--src/libcore/ffi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ffi.rs b/src/libcore/ffi.rs
index edeb3b0d368..1dbf03923e1 100644
--- a/src/libcore/ffi.rs
+++ b/src/libcore/ffi.rs
@@ -18,7 +18,7 @@ use ::fmt;
 ///
 /// [`!`]: ../../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