From 15e246eff8ccc87c290b9763cb66c9885c084950 Mon Sep 17 00:00:00 2001 From: mamekoro <86554319+mamekoro@users.noreply.github.com> Date: Thu, 12 Sep 2024 06:51:17 +0900 Subject: [PATCH] Fix typo in bevy_reflect/src/reflect.rs (#15157) Corrected a typo "enumuration" to "enumeration". --- crates/bevy_reflect/src/reflect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_reflect/src/reflect.rs b/crates/bevy_reflect/src/reflect.rs index 0456d209c7..68d5cb0aa3 100644 --- a/crates/bevy_reflect/src/reflect.rs +++ b/crates/bevy_reflect/src/reflect.rs @@ -142,7 +142,7 @@ pub enum ApplyError { }, } -/// A zero-sized enumuration of the "kinds" of a reflected type. +/// A zero-sized enumeration of the "kinds" of a reflected type. /// /// A [`ReflectKind`] is obtained via [`PartialReflect::reflect_kind`], /// or via [`ReflectRef::kind`],[`ReflectMut::kind`] or [`ReflectOwned::kind`].