about summary refs log tree commit diff
path: root/src/libcore/ptr.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-07-17 16:28:04 -0700
committerBrian Anderson <banderson@mozilla.com>2015-07-20 13:17:41 -0700
commit44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e (patch)
tree107138e203675db258f5bcf581cf3b68ecce942f /src/libcore/ptr.rs
parent47265bbf37385a087235a8c5eddea5944ae6465e (diff)
downloadrust-44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e.tar.gz
rust-44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e.zip
doc: Clean up primitive short descriptions
This makes the primitive descriptions on the front page read properly
as descriptions of types and not of the associated modules.
Diffstat (limited to 'src/libcore/ptr.rs')
-rw-r--r--src/libcore/ptr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs
index 7b33a41f955..b47ced03fba 100644
--- a/src/libcore/ptr.rs
+++ b/src/libcore/ptr.rs
@@ -10,7 +10,7 @@
 
 // FIXME: talk about offset, copy_memory, copy_nonoverlapping_memory
 
-//! Operations on raw pointers, `*const T`, and `*mut T`.
+//! Raw, unsafe pointers, `*const T`, and `*mut T`
 //!
 //! Working with raw pointers in Rust is uncommon,
 //! typically limited to a few patterns.