Skip to content

Commit af8e6d3

Browse files
authored
Unrolled build for rust-lang#122807
Rollup merge of rust-lang#122807 - danielhuang:fix-1, r=davidtwco Add consistency with phrases "meantime" and "mean time" "mean time" is used in a few places while "meantime" is used everywhere else; this would make usage consistent throughout the codebase.
2 parents 75fd074 + 1975871 commit af8e6d3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

compiler/rustc_driver_impl/messages.ftl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ driver_impl_ice = the compiler unexpectedly panicked. this is a bug.
22
driver_impl_ice_bug_report = we would appreciate a bug report: {$bug_report_url}
33
driver_impl_ice_bug_report_internal_feature = using internal features is not supported and expected to cause internal compiler errors when used incorrectly
44
driver_impl_ice_bug_report_outdated =
5-
it seems that this compiler `{$version}` is outdated, a newer nightly should have been released in the mean time
5+
it seems that this compiler `{$version}` is outdated, a newer nightly should have been released in the meantime
66
.update = please consider running `rustup update nightly` to update the nightly channel and check if this problem still persists
77
.url = if the problem still persists, we would appreciate a bug report: {$bug_report_url}
88
driver_impl_ice_exclude_cargo_defaults = some of the compiler flags provided by cargo are hidden

compiler/rustc_lint/src/opaque_hidden_inferred_bound.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ declare_lint! {
2020
/// This functionality was removed in #97346, but then rolled back in #99860
2121
/// because it caused regressions.
2222
///
23-
/// We plan on reintroducing this as a hard error, but in the mean time,
23+
/// We plan on reintroducing this as a hard error, but in the meantime,
2424
/// this lint serves to warn and suggest fixes for any use-cases which rely
2525
/// on this behavior.
2626
///

compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ LLVMRustArchiveChildName(LLVMRustArchiveChildConstRef Child, size_t *Size) {
147147
Expected<StringRef> NameOrErr = Child->getName();
148148
if (!NameOrErr) {
149149
// rustc_codegen_llvm currently doesn't use this error string, but it might be
150-
// useful in the future, and in the mean time this tells LLVM that the
150+
// useful in the future, and in the meantime this tells LLVM that the
151151
// error was not ignored and that it shouldn't abort the process.
152152
LLVMRustSetLastError(toString(NameOrErr.takeError()).c_str());
153153
return nullptr;

src/tools/clippy/clippy_lints/src/misc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ declare_clippy_lint! {
6666
///
6767
/// ### Known problems
6868
/// The lint does not work properly with desugaring and
69-
/// macro, it has been allowed in the mean time.
69+
/// macro, it has been allowed in the meantime.
7070
///
7171
/// ### Example
7272
/// ```no_run

src/tools/clippy/tests/ui-internal/custom_ice_message.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
44

55
error: the compiler unexpectedly panicked. this is a bug.
66

7-
note: it seems that this compiler <version> is outdated, a newer nightly should have been released in the mean time
7+
note: it seems that this compiler <version> is outdated, a newer nightly should have been released in the meantime
88
|
99
= note: please consider running `rustup update nightly` to update the nightly channel and check if this problem still persists
1010
= note: if the problem still persists, we would appreciate a bug report: https://github.com/rust-lang/rust-clippy/issues/new?template=ice.yml

0 commit comments

Comments
 (0)