diff options
| author | mo8it <mo8it@proton.me> | 2024-09-12 14:10:50 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-09-12 17:46:06 +0200 |
| commit | 83d1275d721303439ad436465995fb2bd699d4fd (patch) | |
| tree | 45adbada0a617ff4200b9d11f6cac7750b44de8b | |
| parent | 45abd7d59eab34ae65fe40e7bc2f6cdfe2ba080e (diff) | |
Add missing # in comment
| -rw-r--r-- | src/exercise.rs | 2 |
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 { |
