From 2aa42533772a6b3cd406c34f0de12327320cb875 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 7 May 2014 12:12:24 -0700 Subject: [PATCH] std: Small doc tweaks --- src/libcore/cell.rs | 2 +- src/libcore/ptr.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index 8951c7d806ab..0413b31e8b76 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! Types dealing with dynamic mutability +//! Types that provide interior mutability. use clone::Clone; use cmp::Eq; diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index e3a3f78dcb92..bb587c0e42d0 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// FIXME: talk about offset, copy_memory, copy_nonoverlapping_memory + //! Conveniences for working with unsafe pointers, the `*T`, and `*mut T` types. //! //! Working with unsafe pointers in Rust is fairly uncommon,