about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2022-11-21 15:28:41 -0800
committerDavid Tolnay <dtolnay@gmail.com>2022-11-21 15:28:41 -0800
commit70cee5af4b503948f778a4cf8627bbcb62f5d327 (patch)
tree235093167fcd8c42b35b4de095848a5857b46a27
parentf613bd6d3af8a28f9ea8a499b4524decaf67f198 (diff)
downloadrust-70cee5af4b503948f778a4cf8627bbcb62f5d327.tar.gz
rust-70cee5af4b503948f778a4cf8627bbcb62f5d327.zip
Touch up Box<T> one-liner
-rw-r--r--library/alloc/src/boxed.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/alloc/src/boxed.rs b/library/alloc/src/boxed.rs
index 00c922f3ae9..fc738cb68c3 100644
--- a/library/alloc/src/boxed.rs
+++ b/library/alloc/src/boxed.rs
@@ -1,4 +1,4 @@
-//! The pointer type for heap allocation for an owned value of type `T`.
+//! The `Box<T>` type for heap allocation.
 //!
 //! [`Box<T>`], casually referred to as a 'box', provides the simplest form of
 //! heap allocation in Rust. Boxes provide ownership for this allocation, and
@@ -187,7 +187,7 @@ pub use thin::ThinBox;
 
 mod thin;
 
-/// A pointer type for heap allocation for an owned value of type `T`.
+/// A pointer type that uniquely owns a heap allocation of type `T`.
 ///
 /// See the [module-level documentation](../../std/boxed/index.html) for more.
 #[lang = "owned_box"]