From e4de6a4419cf6d6a7b77dca317c44157fe2eb016 Mon Sep 17 00:00:00 2001 From: RK Date: Fri, 6 Dec 2024 13:21:35 +0530 Subject: [PATCH] Update compiler/rustc_const_eval/src/interpret/place.rs Co-authored-by: Ralf Jung --- compiler/rustc_const_eval/src/interpret/place.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_const_eval/src/interpret/place.rs b/compiler/rustc_const_eval/src/interpret/place.rs index 84a5c73b62d28..f54a932e1b6f5 100644 --- a/compiler/rustc_const_eval/src/interpret/place.rs +++ b/compiler/rustc_const_eval/src/interpret/place.rs @@ -1037,7 +1037,7 @@ where // Turn untagged "global" pointers (obtained via `tcx`) into the machine pointer to the allocation. M::adjust_alloc_root_pointer(&self, Pointer::from(id), Some(kind)) } else { - // Allocate new memory for mutable data + // Allocate new memory for mutable data. self.allocate_bytes_ptr(bytes, align, kind, mutbl) } }