From 48c8ff59ecc01060532b43c2fb27f9bc7a3d8fcd Mon Sep 17 00:00:00 2001 From: Oli Scherer Date: Sat, 26 Dec 2020 18:05:55 +0100 Subject: [PATCH] Update library/core/src/alloc/global.rs Co-authored-by: Ralf Jung --- library/core/src/alloc/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/alloc/global.rs b/library/core/src/alloc/global.rs index 6549ea1a1241..c1bd896bdbca 100644 --- a/library/core/src/alloc/global.rs +++ b/library/core/src/alloc/global.rs @@ -57,7 +57,7 @@ use crate::ptr; /// * You may not rely on allocations actually happening, even if there are explicit /// heap allocations in the source. /// The optimizer may detect unused allocations that it can either -/// eliminate entirely or move to the stack and thus never invoke the allocator here. The +/// eliminate entirely or move to the stack and thus never invoke the allocator. The /// optimizer may further assume that allocation is infallible, so code that used to fail due /// to allocator failures may now suddenly work because the optimizer worked around the /// need for an allocation.