From 519aa6e4d7d6bb839591a5ec3b9bf479b94663f7 Mon Sep 17 00:00:00 2001 From: kraktus Date: Wed, 4 May 2022 13:43:33 +0200 Subject: [PATCH] update `jemallocator` example to use 2018 edition import syntax --- library/std/src/alloc.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/std/src/alloc.rs b/library/std/src/alloc.rs index 49b6cd4232c..63c527b64da 100644 --- a/library/std/src/alloc.rs +++ b/library/std/src/alloc.rs @@ -42,8 +42,6 @@ //! [`GlobalAlloc`] trait. This type can be provided by an external library: //! //! ```rust,ignore (demonstrates crates.io usage) -//! extern crate jemallocator; -//! //! use jemallocator::Jemalloc; //! //! #[global_allocator]