about summary refs log tree commit diff
path: root/compiler/rustc_errors/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-03-15 07:03:57 +0000
committerbors <bors@rust-lang.org>2023-03-15 07:03:57 +0000
commit5fde770aec7945a5d551a0ad3357c0fd85eef10c (patch)
tree88c74d646060429f93b7790a9c7fad32a4c38a78 /compiler/rustc_errors/src
parent163f354ef617054af121e3bcc72ccec9cdb2f482 (diff)
parentf18c39e98cd5f5c84be6c1671d9a43dca5fe10f5 (diff)
downloadrust-5fde770aec7945a5d551a0ad3357c0fd85eef10c.tar.gz
rust-5fde770aec7945a5d551a0ad3357c0fd85eef10c.zip
Auto merge of #2815 - saethlin:rustup, r=oli-obk
rustup
Diffstat (limited to 'compiler/rustc_errors/src')
-rw-r--r--compiler/rustc_errors/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs
index 99af872f07f..bab4f31e777 100644
--- a/compiler/rustc_errors/src/lib.rs
+++ b/compiler/rustc_errors/src/lib.rs
@@ -76,7 +76,7 @@ pub use snippet::Style;
 pub type PErr<'a> = DiagnosticBuilder<'a, ErrorGuaranteed>;
 pub type PResult<'a, T> = Result<T, PErr<'a>>;
 
-fluent_messages! { "../locales/en-US.ftl" }
+fluent_messages! { "../messages.ftl" }
 
 // `PResult` is used a lot. Make sure it doesn't unintentionally get bigger.
 // (See also the comment on `DiagnosticBuilderInner`'s `diagnostic` field.)