about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2023-03-21 12:49:24 +0000
committerMaybe Waffle <waffle.lapkin@gmail.com>2023-04-26 14:06:36 +0000
commitb311ec02cc4e736c145de827504567086358094f (patch)
tree520eb8902a5eb6dd457beb4f238308451bb1560f
parent91b61a4ad618c1abc2af43a58695de185ef1e513 (diff)
Try to improve tidy errors on TODOs
-rw-r--r--src/tools/tidy/src/style.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/tidy/src/style.rs b/src/tools/tidy/src/style.rs
index a2012db903a..5f388ee47bb 100644
--- a/src/tools/tidy/src/style.rs
+++ b/src/tools/tidy/src/style.rs
@@ -385,10 +385,12 @@ pub fn check(path: &Path, bad: &mut bool) {
             }
             if filename != "style.rs" {
                 if trimmed.contains("TODO") {
-                    err("TODO is deprecated; use FIXME")
+                    err(
+                        "TODO is used for tasks that should be done before merging a PR; If you want to leave a message in the codebase use FIXME",
+                    )
                 }
                 if trimmed.contains("//") && trimmed.contains(" XXX") {
-                    err("XXX is deprecated; use FIXME")
+                    err("Instead of XXX use FIXME")
                 }
                 if any_problematic_line {
                     for s in problematic_consts_strings.iter() {