From 2b6ab476de9f57544712e2d51ef6c03bc65ac0c7 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 31 Jan 2024 10:37:57 +0100 Subject: [PATCH] Improve wording in comment --- crates/fj-core/src/storage/handle.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/storage/handle.rs b/crates/fj-core/src/storage/handle.rs index 957772929..b6d99f3b6 100644 --- a/crates/fj-core/src/storage/handle.rs +++ b/crates/fj-core/src/storage/handle.rs @@ -102,8 +102,8 @@ impl Deref for Handle { // which I've run successfully under Miri. let slot = unsafe { &*self.ptr }; - // Can only panic, if the object has been reserved, but the reservation - // was never completed. + // Can only panic, if the object was reserved, but the reservation has + // never been completed. slot.as_ref() .expect("Handle references non-existing object") }