about summary refs log tree commit diff
path: root/src/libcore/ptr.rs
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-03-04 17:37:11 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-03-04 17:37:11 -0500
commit096409cf8c2f0fcfe8dec77fd293ce5a4ba41284 (patch)
tree5ca7279c19b94158b7f0fde82f02471ffb877a91 /src/libcore/ptr.rs
parentc97524bef9e59a80875110b402b3fc8c139d4d64 (diff)
downloadrust-096409cf8c2f0fcfe8dec77fd293ce5a4ba41284.tar.gz
rust-096409cf8c2f0fcfe8dec77fd293ce5a4ba41284.zip
End stdlib module summaries with a full stop.
Fixes #9447
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 3cf722668b2..3cbeac450e2 100644
--- a/src/libcore/ptr.rs
+++ b/src/libcore/ptr.rs
@@ -10,7 +10,7 @@
 
 // FIXME: talk about offset, copy_memory, copy_nonoverlapping_memory
 
-//! Raw, unsafe pointers, `*const T`, and `*mut T`
+//! Raw, unsafe pointers, `*const T`, and `*mut T`.
 //!
 //! *[See also the pointer primitive types](../../std/primitive.pointer.html).*