From bc3f80fb85cac4bdbe44d0b2a7ffbe4860ef4b3a Mon Sep 17 00:00:00 2001 From: Klim Tsoutsman <32662194+TypicalFork@users.noreply.github.com> Date: Tue, 6 Jul 2021 21:15:50 +0000 Subject: [PATCH] Fix name in list of features (#2438) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Objective - Fix the name of the `bevy_dynamic_plugin` feature in the list of features ## Solution - Remove the letter "s" 😶 --- docs/cargo_features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cargo_features.md b/docs/cargo_features.md index 7dc65b9576..794c5bc82c 100644 --- a/docs/cargo_features.md +++ b/docs/cargo_features.md @@ -5,7 +5,7 @@ |feature name|description| |-|-| |bevy_audio|Audio support. Support for all audio formats depends on this.| -|bevy_dynamic_plugins|Plugins for dynamic loading (libloading).| +|bevy_dynamic_plugin|Plugin for dynamic loading (libloading).| |bevy_gilrs|Adds gamepad support.| |bevy_gltf|[glTF](https://www.khronos.org/gltf/) support.| |bevy_winit|GUI support.|