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,