summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-11-29 17:39:28 +0100
committerGitHub <noreply@github.com>2023-11-29 17:39:28 +0100
commit9f4b5566dbee4fbedb350bfe3fa6e4b00c4b984e (patch)
tree6d89c98679e569c96c59b17b99af32564d442b00
parentf97f4bc4f1796273f0cc4efce0166990a7db3431 (diff)
parent3461c4f73dcedab0b7687e04a806a930ce5f3c17 (diff)
Merge pull request #1769 from bastianpedersen/patch-1
docs: 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.