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") }