about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcore/ptr/unique.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ptr/unique.rs b/src/libcore/ptr/unique.rs
index 24f45394a3b..3521dd79979 100644
--- a/src/libcore/ptr/unique.rs
+++ b/src/libcore/ptr/unique.rs
@@ -123,7 +123,7 @@ impl<T: ?Sized> Unique<T> {
         &mut *self.as_ptr()
     }
 
-    /// Casts to a pointer of another type
+    /// Casts to a pointer of another type.
     #[inline]
     pub const fn cast<U>(self) -> Unique<U> {
         unsafe {