diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-06-20 05:04:30 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-06-20 09:23:20 +1000 |
| commit | 8c5d84d102003f3de9b244d3fb474a5943e5f0f4 (patch) | |
| tree | 2bc4f3cb7727db20a0354e5c0fc85582df5d300a | |
| parent | cb1bde07c147a33c3234d522bf63e9ce76772180 (diff) | |
| download | rust-8c5d84d102003f3de9b244d3fb474a5943e5f0f4.tar.gz rust-8c5d84d102003f3de9b244d3fb474a5943e5f0f4.zip | |
Add blank lines after module-level `//!` comments.
Most modules have such a blank line, but some don't. Inserting the blank line makes it clearer that the `//!` comments are describing the entire module, rather than the `use` declaration(s) that immediately follows.
| -rw-r--r-- | tests/lang_tests_common.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lang_tests_common.rs b/tests/lang_tests_common.rs index d321ffc8ff5..09307836fd4 100644 --- a/tests/lang_tests_common.rs +++ b/tests/lang_tests_common.rs @@ -1,4 +1,5 @@ //! The common code for `tests/lang_tests_*.rs` + use std::{ env::{self, current_dir}, path::{Path, PathBuf}, |
