about summary refs log tree commit diff
path: root/library/std/src/alloc.rs
diff options
context:
space:
mode:
authorpierwill <19642016+pierwill@users.noreply.github.com>2020-12-17 21:49:32 -0800
committerGitHub <noreply@github.com>2020-12-17 21:49:32 -0800
commit9cb43bd9945e2c10a0641cf6c944b753fc02a38d (patch)
tree15510cf562c190bcdd21fb063f206699ac1fe832 /library/std/src/alloc.rs
parentf3800db221a7342121804b8a5c43e6326070411d (diff)
downloadrust-9cb43bd9945e2c10a0641cf6c944b753fc02a38d.tar.gz
rust-9cb43bd9945e2c10a0641cf6c944b753fc02a38d.zip
Add missing punctuation to std::alloc docs
Add a period to first line of module docs to match other modules in std.
Diffstat (limited to 'library/std/src/alloc.rs')
-rw-r--r--library/std/src/alloc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/alloc.rs b/library/std/src/alloc.rs
index 819d57a934d..8491ff40033 100644
--- a/library/std/src/alloc.rs
+++ b/library/std/src/alloc.rs
@@ -1,4 +1,4 @@
-//! Memory allocation APIs
+//! Memory allocation APIs.
 //!
 //! In a given program, the standard library has one “global” memory allocator
 //! that is used for example by `Box<T>` and `Vec<T>`.