From 29a7d7fcb6fce194f2dfea02af14e4615e99300d Mon Sep 17 00:00:00 2001 From: Nicola Papale Date: Thu, 1 Feb 2024 09:50:51 +0100 Subject: [PATCH] Fix typo discovered by ManevilleF MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: FĂ©lix Lescaudey de Maneville --- content/news/2024-02-03-bevy-0.13/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/news/2024-02-03-bevy-0.13/index.md b/content/news/2024-02-03-bevy-0.13/index.md index 3dfe69dd8d..4515c91a66 100644 --- a/content/news/2024-02-03-bevy-0.13/index.md +++ b/content/news/2024-02-03-bevy-0.13/index.md @@ -48,7 +48,7 @@ They are now possible thanks to dynamic queries. The standard way of defining a `Query` is by using them as system parameters: ```rust -fn take_damange(mut player_health: Query<(Entity, &mut Health), With>) { +fn take_damage(mut player_health: Query<(Entity, &mut Health), With>) { // ... } ```