From 630ff0e00b24bb5026fe248deb3a4818b9a38d4c Mon Sep 17 00:00:00 2001
From: Steven Mann <sjmann91@gmail.com>
Date: Tue, 21 Apr 2020 17:50:00 +0100
Subject: [PATCH] chore: add explanatory comment to clippy1

---
 exercises/clippy/clippy1.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/exercises/clippy/clippy1.rs b/exercises/clippy/clippy1.rs
index 2b4c635..bdb5dd2 100644
--- a/exercises/clippy/clippy1.rs
+++ b/exercises/clippy/clippy1.rs
@@ -2,6 +2,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.
 // Execute `rustlings hint clippy1` for hints :)
 
 // I AM NOT DONE