From 03a068e4d1b01fa4c7dcc02c63f53e95999ce05b Mon Sep 17 00:00:00 2001 From: Justin Schwab Date: Thu, 31 Oct 2024 20:20:01 +0100 Subject: [PATCH] Fix typo in bevy_ecs (#16195) Found this while reading the docs, I assume this is a typo. --- crates/bevy_state/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_state/src/lib.rs b/crates/bevy_state/src/lib.rs index c8cc1855bc..bf6a1aab93 100644 --- a/crates/bevy_state/src/lib.rs +++ b/crates/bevy_state/src/lib.rs @@ -17,7 +17,7 @@ //! //! Most of the utilities around state involve running systems during transitions between states, or //! determining whether to run certain systems, though they can be used more directly as well. This -//! makes it easier to transition between menus, add loading screens, pause games, and the more. +//! makes it easier to transition between menus, add loading screens, pause games, and more. //! //! Specifically, Bevy provides the following utilities: //!