From 2fc76ec7f33eb21e504be9109579160a54010b3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 19 Feb 2022 04:19:37 +0100 Subject: [PATCH] doc comment suggestion Co-Authored-By: Alice Cecile --- crates/bevy_app/src/plugin.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_app/src/plugin.rs b/crates/bevy_app/src/plugin.rs index 04bef9e5bb41b..af33e9514d251 100644 --- a/crates/bevy_app/src/plugin.rs +++ b/crates/bevy_app/src/plugin.rs @@ -15,8 +15,8 @@ pub trait Plugin: Any + Send + Sync { fn name(&self) -> &str { std::any::type_name::() } - /// If the plugin can be instantiated several times in an [`App`](crate::App), override this - /// method to return `false`. + /// If the plugin can be meaningfully instantiated several times in an [`App`](crate::App), + /// override this method to return `false`. fn is_unique(&self) -> bool { true }