From e6efcbb40afb7ac335ac29d79f90f404517f5457 Mon Sep 17 00:00:00 2001 From: Alice Cecile Date: Wed, 18 Oct 2023 18:37:09 -0400 Subject: [PATCH] Typo --- content/news/2023-10-21-bevy-0.12/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/news/2023-10-21-bevy-0.12/index.md b/content/news/2023-10-21-bevy-0.12/index.md index 3e565e46d0..08622dd3bf 100644 --- a/content/news/2023-10-21-bevy-0.12/index.md +++ b/content/news/2023-10-21-bevy-0.12/index.md @@ -61,7 +61,7 @@ fn call_all(query: Query<&Callback>, mut commands: Commands) { Currently, there are some drawbacks and limitations. Most importantly, one-shot systems are not ran in parallel, so running slow systems like this can become a bottleneck. Additionally, exclusive systems, systems with `In` arguments, and systems that return values, are not supported. -Registering and running systems is useful and allows for a great degree of control. However, if you __just_ want to run a system - sans registration - there's `RunSystemOnce`, a new trait that does just that. +Registering and running systems is useful and allows for a great degree of control. However, if you _just_ want to run a system - sans registration - there's `RunSystemOnce`, a new trait that does just that. ```rust use bevy::ecs::system::RunSystemOnce;