about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-09-23 00:36:41 +0200
committerGitHub <noreply@github.com>2019-09-23 00:36:41 +0200
commit55df97c3946b1c09752ed8fe39a0287367a1a2b8 (patch)
tree9ba917bd4058143c415a5b996858090b82520132
parent78d715fe1411590ab080710bc8c012292a3bbc0a (diff)
parentad4787a992774bc91d257ffab129e6d66dd451ed (diff)
Rollup merge of #64688 - rust-lang:clarify-tidy-since, r=alexreg
Clarify the "since" tidy check

r? @pietroalbini

cc @alexreg
-rw-r--r--src/tools/tidy/src/features.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs
index 50e9116c778..6d38cfc8630 100644
--- a/src/tools/tidy/src/features.rs
+++ b/src/tools/tidy/src/features.rs
@@ -307,7 +307,7 @@ fn collect_lang_features_in(base: &Path, file: &str, bad: &mut bool) -> Features
                 if prev_since > since {
                     tidy_error!(
                         bad,
-                        "{}:{}: feature {} is not sorted by since",
+                        "{}:{}: feature {} is not sorted by \"since\" (version number)",
                         path.display(),
                         line_number,
                         name,