From e34ecf2f8669947cb5858337dc169c3a115c1ea3 Mon Sep 17 00:00:00 2001 From: Ben Frankel Date: Wed, 19 Jun 2024 11:51:47 -0700 Subject: [PATCH] Fix typo in `ComponentId` docs: `of` -> `or` (#13932) # Objective Fix a typo. Single-character PR :) --- crates/bevy_ecs/src/component.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/component.rs b/crates/bevy_ecs/src/component.rs index 28582d20db..0a38611fae 100644 --- a/crates/bevy_ecs/src/component.rs +++ b/crates/bevy_ecs/src/component.rs @@ -413,7 +413,7 @@ impl ComponentInfo { } } -/// A value which uniquely identifies the type of a [`Component`] of [`Resource`] within a +/// A value which uniquely identifies the type of a [`Component`] or [`Resource`] within a /// [`World`]. /// /// Each time a new `Component` type is registered within a `World` using