From c061ff4b6957572d0d1e3ed48e63d07c7946e269 Mon Sep 17 00:00:00 2001 From: Tim Diekmann <21277928+TimDiekmann@users.noreply.github.com> Date: Fri, 3 Apr 2020 08:22:31 +0200 Subject: [PATCH] Update mod.rs --- src/libcore/alloc/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/alloc/mod.rs b/src/libcore/alloc/mod.rs index b1e502d8548..e1892edb7c7 100644 --- a/src/libcore/alloc/mod.rs +++ b/src/libcore/alloc/mod.rs @@ -119,7 +119,7 @@ pub enum ReallocPlacement { /// /// Unlike [`GlobalAlloc`][], zero-sized allocations are allowed in `AllocRef`. If an underlying /// allocator does not support this (like jemalloc) or return a null pointer (such as -/// `libc::malloc`), this is caught by the implementation. +/// `libc::malloc`), this must be caught by the implementation. /// /// ### Currently allocated memory ///