From 30c047d2e99bd8b0b56f1911de7201c73d3ee61c Mon Sep 17 00:00:00 2001 From: Kolby Moroz Liebl <31669092+KolbyML@users.noreply.github.com> Date: Sun, 8 Dec 2024 08:39:21 -0700 Subject: [PATCH] fix: weird book edgecase --- book/src/developers/contributing/rust/imports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/developers/contributing/rust/imports.md b/book/src/developers/contributing/rust/imports.md index 9bdf9182d..844fbe1b8 100644 --- a/book/src/developers/contributing/rust/imports.md +++ b/book/src/developers/contributing/rust/imports.md @@ -6,7 +6,7 @@ 3. self, super and crate imports. - Alphabetize imports in `Cargo.toml` -```rust +```rust,ignore use alloc::alloc::Layout; use core::f32; use std::sync::Arc;