about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2021-01-25 12:43:17 -0800
committerEric Huss <eric@huss.org>2021-01-25 12:43:17 -0800
commit6f22f512ec8e4fce13d2d3675b6549e867bea824 (patch)
tree78941eedd79361ab42d1e6ace4fffd9bd56c3004
parentd9807154d693df43552c1e312dceb320f124dff6 (diff)
downloadrust-6f22f512ec8e4fce13d2d3675b6549e867bea824.tar.gz
rust-6f22f512ec8e4fce13d2d3675b6549e867bea824.zip
tidy: Remove unnecessary trailing semicolon.
This will cause a failure due to the warning after the next beta branch
as https://github.com/rust-lang/rust/pull/79812 will hit beta.
-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 d3a44542759..cb84fd8be6f 100644
--- a/src/tools/tidy/src/features.rs
+++ b/src/tools/tidy/src/features.rs
@@ -422,7 +422,7 @@ fn map_lib_features(
                         mf(Err($msg), file, i + 1);
                         continue;
                     }};
-                };
+                }
                 if let Some((ref name, ref mut f)) = becoming_feature {
                     if f.tracking_issue.is_none() {
                         f.tracking_issue = find_attr_val(line, "issue").and_then(handle_issue_none);