summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-09-12 14:10:50 +0200
committermo8it <mo8it@proton.me>2024-09-12 17:46:06 +0200
commit83d1275d721303439ad436465995fb2bd699d4fd (patch)
tree45adbada0a617ff4200b9d11f6cac7750b44de8b /src
parent45abd7d59eab34ae65fe40e7bc2f6cdfe2ba080e (diff)
Add missing # in comment
Diffstat (limited to 'src')
-rw-r--r--src/exercise.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exercise.rs b/src/exercise.rs
index 7fb2343..8490828 100644
--- a/src/exercise.rs
+++ b/src/exercise.rs
@@ -131,7 +131,7 @@ pub trait RunnableExercise {
let mut clippy_cmd = cmd_runner.cargo("clippy", bin_name, output.as_deref_mut());
- // `--profile test` is required to also check code with `[cfg(test)]`.
+ // `--profile test` is required to also check code with `#[cfg(test)]`.
if FORCE_STRICT_CLIPPY || self.strict_clippy() {
clippy_cmd.args(["--profile", "test", "--", "-D", "warnings"]);
} else {