From db013b664e3a6ecbcb9945d9d458c8ff0c92957d Mon Sep 17 00:00:00 2001 From: terrarier2111 <58695553+terrarier2111@users.noreply.github.com> Date: Sun, 10 Oct 2021 22:42:01 +0000 Subject: [PATCH] Fix typo (#2944) --- 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 5ece927418..a38132fc4c 100644 --- a/crates/bevy_ecs/src/component.rs +++ b/crates/bevy_ecs/src/component.rs @@ -39,7 +39,7 @@ pub struct TableStorage; pub struct SparseStorage; pub trait ComponentStorage: sealed::Sealed { - // because the trait is selaed, those items are private API. + // because the trait is sealed, those items are private API. const STORAGE_TYPE: StorageType; }