std: Small doc tweaks

This commit is contained in:
Brian Anderson 2014-05-07 12:12:24 -07:00
parent eb5f9feadb
commit 2aa4253377
2 changed files with 3 additions and 1 deletions

View File

@ -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;

View File

@ -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,