about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-06-10 22:07:09 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-06-10 22:07:09 +0530
commit32e96aa165d2e3cd7f142a9ed64e38289dc73f1a (patch)
tree69e396efd0466ad5865ae8521f79d3e5f87b4d0e /src/liballoc
parentc84aff92b92b1d99af082c7dcb6f824c7a868ce1 (diff)
parenta3cd5eb1bd53a919bfc76da06e05e0d32c410e5b (diff)
downloadrust-32e96aa165d2e3cd7f142a9ed64e38289dc73f1a.tar.gz
rust-32e96aa165d2e3cd7f142a9ed64e38289dc73f1a.zip
Rollup merge of #26143 - steveklabnik:gh25851, r=alexcrichton
Still some references left to this old term, I've updated them to say boxes.

Related to #25851
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index ac5a5d60cbd..5541a5f34c4 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -22,9 +22,9 @@
 //!
 //! ## Boxed values
 //!
-//! The [`Box`](boxed/index.html) type is the core owned pointer type in Rust.
-//! There can only be one owner of a `Box`, and the owner can decide to mutate
-//! the contents, which live on the heap.
+//! The [`Box`](boxed/index.html) type is a smart pointer type. There can
+//! only be one owner of a `Box`, and the owner can decide to mutate the
+//! contents, which live on the heap.
 //!
 //! This type can be sent among threads efficiently as the size of a `Box` value
 //! is the same as that of a pointer. Tree-like data structures are often built