From 04fc03f04bd8f8f0733a397fd83423d153cb383a Mon Sep 17 00:00:00 2001 From: Sam Bostock Date: Mon, 20 Apr 2026 14:41:10 -0400 Subject: [PATCH] Match comment module & file order Swapping the order of the modules and corresponding files mid-sentence is confusing. Instead, we should keep their respective ordering consistent. --- src/mod/split.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mod/split.md b/src/mod/split.md index 2c78ee2b8b..8d95e9f5e5 100644 --- a/src/mod/split.md +++ b/src/mod/split.md @@ -39,9 +39,9 @@ fn main() { In `my.rs`: ```rust,ignore -// Similarly `mod inaccessible` and `mod nested` will locate the `nested.rs` -// and `inaccessible.rs` files and insert them here under their respective -// modules +// Similarly `mod inaccessible` and `mod nested` will locate the +// `inaccessible.rs` and `nested.rs` files and insert them here under their +// respective modules mod inaccessible; pub mod nested;