Add missing punctuation to std::alloc docs

Add a period to first line of module docs to match other modules in std.
This commit is contained in:
pierwill 2020-12-17 21:49:32 -08:00 committed by GitHub
parent f3800db221
commit 9cb43bd994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>`.