From a3bb0d3469990aea9d1ef5d02b5edfb7f3288deb Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Sat, 2 Jan 2021 18:19:15 +0200 Subject: [PATCH] Remove unused import in code example (#898) --- blog/content/edition-2/posts/10-heap-allocation/index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/blog/content/edition-2/posts/10-heap-allocation/index.md b/blog/content/edition-2/posts/10-heap-allocation/index.md index fff4e887..d63f7eba 100644 --- a/blog/content/edition-2/posts/10-heap-allocation/index.md +++ b/blog/content/edition-2/posts/10-heap-allocation/index.md @@ -715,8 +715,6 @@ Now we're ready to add a few test cases. First, we add a test that performs some ```rust // in tests/heap_allocation.rs - -use blog_os::{serial_print, serial_println}; use alloc::boxed::Box; #[test_case]