about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-12-08 03:39:50 +0100
committerGitHub <noreply@github.com>2019-12-08 03:39:50 +0100
commit32e27c2c9a11e47289ac36101f583e08e8bc6f5e (patch)
treed1c98f5b876a0d8f092f7003cab372b5dbe00f16
parent0c9f669bde1a0754f83b05e30b802cb58c2fa765 (diff)
parentdfc04fc7a78888e9afa7dcc26d0173564e79adbe (diff)
downloadrust-32e27c2c9a11e47289ac36101f583e08e8bc6f5e.tar.gz
rust-32e27c2c9a11e47289ac36101f583e08e8bc6f5e.zip
Rollup merge of #67129 - remexre:patch-1, r=Dylan-DPC
Fixes typo

`legacy_disrectory_ownership` vs `legacy_directory_ownership`
-rw-r--r--src/librustc_lint/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_lint/lib.rs b/src/librustc_lint/lib.rs
index 12aab4b4f84..b77f2cb8d6e 100644
--- a/src/librustc_lint/lib.rs
+++ b/src/librustc_lint/lib.rs
@@ -341,7 +341,7 @@ fn register_builtins(store: &mut lint::LintStore, no_interleave_lints: bool) {
         "converted into hard error, see https://github.com/rust-lang/rust/issues/46205");
     store.register_removed("legacy_constructor_visibility",
         "converted into hard error, see https://github.com/rust-lang/rust/issues/39207");
-    store.register_removed("legacy_disrectory_ownership",
+    store.register_removed("legacy_directory_ownership",
         "converted into hard error, see https://github.com/rust-lang/rust/issues/37872");
     store.register_removed("safe_extern_statics",
         "converted into hard error, see https://github.com/rust-lang/rust/issues/36247");