From 94285882d220822e2bebea4f7ef73ac044123ca6 Mon Sep 17 00:00:00 2001 From: Boxy Date: Mon, 18 Apr 2022 23:38:50 +0100 Subject: [PATCH] Update crates/bevy_ecs/src/ptr.rs Co-authored-by: Alice Cecile --- crates/bevy_ecs/src/ptr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/ptr.rs b/crates/bevy_ecs/src/ptr.rs index c30ebeee485b10..a5e52377f3c04a 100644 --- a/crates/bevy_ecs/src/ptr.rs +++ b/crates/bevy_ecs/src/ptr.rs @@ -37,7 +37,7 @@ pub struct PtrMut<'a>(NonNull, PhantomData<&'a mut u8>); /// - The lifetime `'a` accurately represents how long the pointer is valid for. /// /// It may be helpful to think of this type as similar to `&'a mut ManuallyDrop` but -/// without the metadata and able to point to data that does not correspond to a rust type. +/// without the metadata and able to point to data that does not correspond to a Rust type. pub struct OwningPtr<'a>(NonNull, PhantomData<&'a mut u8>); macro_rules! impl_ptr {