summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastian Pedersen <bastian.tangedal@gmail.com>2023-11-12 11:39:14 +0100
committerGitHub <noreply@github.com>2023-11-12 11:39:14 +0100
commit3461c4f73dcedab0b7687e04a806a930ce5f3c17 (patch)
treeda5ff44b80f16625b6706ce77e06250c9eef091c
parentbc3808cf29323a244762b47bf7d3f391d353fdf1 (diff)
Reword clippy1 exercise to be more readable
-rw-r--r--exercises/22_clippy/clippy1.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/22_clippy/clippy1.rs b/exercises/22_clippy/clippy1.rs
index 95c0141..e0c6ce7c4 100644
--- a/exercises/22_clippy/clippy1.rs
+++ b/exercises/22_clippy/clippy1.rs
@@ -3,8 +3,8 @@
// The Clippy tool is a collection of lints to analyze your code so you can
// catch common mistakes and improve your Rust code.
//
-// For these exercises the code will fail to compile when there are clippy
-// warnings check clippy's suggestions from the output to solve the exercise.
+// For these exercises the code will fail to compile when there are Clippy
+// warnings. Check Clippy's suggestions from the output to solve the exercise.
//
// Execute `rustlings hint clippy1` or use the `hint` watch subcommand for a
// hint.