about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2023-12-04 21:41:19 +0200
committerLaurențiu Nicola <lnicola@dend.ro>2023-12-04 21:41:19 +0200
commit6d2543b62256676718f1936a182f92b10f2ca8ac (patch)
tree92355e311786715b8ed40a62689d0f749e0c14e3
parent26c0963281e832df6181482bfe6b5ee69cd662c4 (diff)
downloadrust-6d2543b62256676718f1936a182f92b10f2ca8ac.tar.gz
rust-6d2543b62256676718f1936a182f92b10f2ca8ac.zip
Temporarily revert delay_bug to delayed_bug change
-rw-r--r--crates/hir-ty/src/layout.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-ty/src/layout.rs b/crates/hir-ty/src/layout.rs
index 27c79499868..b2591f016d4 100644
--- a/crates/hir-ty/src/layout.rs
+++ b/crates/hir-ty/src/layout.rs
@@ -110,7 +110,7 @@ struct LayoutCx<'a> {
 impl<'a> LayoutCalculator for LayoutCx<'a> {
     type TargetDataLayoutRef = &'a TargetDataLayout;
 
-    fn delayed_bug(&self, txt: String) {
+    fn delay_bug(&self, txt: String) {
         never!("{}", txt);
     }