diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-02-09 00:23:04 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-02-09 00:23:04 -0800 |
| commit | 1c4a2fd61cd2910985c57007df7a1ed0f6a5d6b5 (patch) | |
| tree | 55fe32548de5aa9b16ebedbd0fe835922bf04e50 /src/libstd | |
| parent | 073b655187916e9155d285efc496cfd89104796c (diff) | |
| download | rust-1c4a2fd61cd2910985c57007df7a1ed0f6a5d6b5.tar.gz rust-1c4a2fd61cd2910985c57007df7a1ed0f6a5d6b5.zip | |
std: Make mem's doc slightly more accurate
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/mem.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/mem.rs b/src/libstd/mem.rs index c7425d5b2b7..ccedd34a0d1 100644 --- a/src/libstd/mem.rs +++ b/src/libstd/mem.rs @@ -8,7 +8,10 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! Functions relating to memory layout +//! Basic functions for dealing with memory +//! +//! This module contains functions for querying the size and alignment of +//! types, initializing and manipulating memory. #[allow(missing_doc)]; // FIXME |
