-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
errors: rename typeck.ftl
to hir_analysis.ftl
#102395
Conversation
cc @davidtwco, @compiler-errors, @JohnTitor, @estebank, @TaKO8Ki
cc @davidtwco, @compiler-errors, @JohnTitor, @estebank, @TaKO8Ki |
r? @jackh726 (rust-highfive has picked a reviewer for you, use r? to override) |
This comment was marked as resolved.
This comment was marked as resolved.
efa0823
to
715d61d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense to me 👍
…k, r=estebank errors: rename `typeck.ftl` to `hir_analysis.ftl` In rust-lang#102306, `rustc_typeck` was renamed to `rustc_hir_analysis` but the diagnostic resources were not renamed - which is what this pull request changes.
This may cause a failure with other PRs, so |
💡 This pull request was already approved, no need to approve it again.
|
Sorry, wrong input! |
💡 This pull request was already approved, no need to approve it again.
|
⌛ Testing commit 715d61d with merge ccb80638b2597c6d37cf0f04230416f6e5ce8ef7... |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
715d61d
to
6a03328
Compare
This comment was marked as resolved.
This comment was marked as resolved.
In rust-lang#102306, `rustc_typeck` was renamed to `rustc_hir_analysis` but the diagnostic resources were not renamed - which is what this commit changes. Signed-off-by: David Wood <david.wood@huawei.com>
6a03328
to
c4418e1
Compare
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (d9f8b4b): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Footnotes |
In #102306,
rustc_typeck
was renamed torustc_hir_analysis
but the diagnostic resources were not renamed - which is what this pull request changes.