about summary refs log tree commit diff
path: root/src/doc/book/raw-pointers.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/book/raw-pointers.md')
-rw-r--r--src/doc/book/raw-pointers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/raw-pointers.md b/src/doc/book/raw-pointers.md
index 679f5489ea8..ae100aec3b5 100644
--- a/src/doc/book/raw-pointers.md
+++ b/src/doc/book/raw-pointers.md
@@ -17,7 +17,7 @@ Here are some things to remember about raw pointers that are different than
 other pointer types. They:
 
 - are not guaranteed to point to valid memory and are not even
-  guaranteed to be non-null (unlike both `Box` and `&`);
+  guaranteed to be non-NULL (unlike both `Box` and `&`);
 - do not have any automatic clean-up, unlike `Box`, and so require
   manual resource management;
 - are plain-old-data, that is, they don't move ownership, again unlike