about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-06-09 16:26:21 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-06-09 16:26:21 -0400
commita3cd5eb1bd53a919bfc76da06e05e0d32c410e5b (patch)
tree0beafc2cf488d86e9e74fc0c2d5a207302becee6 /src/liballoc
parent7b0f2af27f18b6c81fe6a2faab0ba96e0da3bba5 (diff)
downloadrust-a3cd5eb1bd53a919bfc76da06e05e0d32c410e5b.tar.gz
rust-a3cd5eb1bd53a919bfc76da06e05e0d32c410e5b.zip
Exise 'owned pointer' from the codebase
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