about summary refs log tree commit diff
path: root/src/libstd/array.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-07-17 16:28:04 -0700
committerBrian Anderson <banderson@mozilla.com>2015-07-20 13:17:41 -0700
commit44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e (patch)
tree107138e203675db258f5bcf581cf3b68ecce942f /src/libstd/array.rs
parent47265bbf37385a087235a8c5eddea5944ae6465e (diff)
downloadrust-44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e.tar.gz
rust-44dd247cd5ced8ae8a8c6f1d04463abce21c8e9e.zip
doc: Clean up primitive short descriptions
This makes the primitive descriptions on the front page read properly
as descriptions of types and not of the associated modules.
Diffstat (limited to 'src/libstd/array.rs')
-rw-r--r--src/libstd/array.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/array.rs b/src/libstd/array.rs
index 0dfcc72e379..f6d133319c8 100644
--- a/src/libstd/array.rs
+++ b/src/libstd/array.rs
@@ -8,8 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! A fixed-size array is denoted `[T; N]` for the element type `T` and
-//! the compile time constant size `N`. The size must be zero or positive.
+//! A fixed-size array, denoted `[T; N]`, for the element type, `T`, and
+//! the non-negative compile time constant size, `N`.
 //!
 //! Arrays values are created either with an explicit expression that lists
 //! each element: `[x, y, z]` or a repeat expression: `[x; N]`. The repeat