From e48c05c73474a5f6a212257cecda7ceaf2465cf3 Mon Sep 17 00:00:00 2001 From: Lixou <82600264+DasLixou@users.noreply.github.com> Date: Sun, 13 Nov 2022 15:35:48 +0000 Subject: [PATCH] Fix Link in valid_parent_check_plugin.rs (#6584) # Objective Link doesn't get to right segment ## Solution Fix link --- crates/bevy_hierarchy/src/valid_parent_check_plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_hierarchy/src/valid_parent_check_plugin.rs b/crates/bevy_hierarchy/src/valid_parent_check_plugin.rs index 153041cf99..22a2bd0882 100644 --- a/crates/bevy_hierarchy/src/valid_parent_check_plugin.rs +++ b/crates/bevy_hierarchy/src/valid_parent_check_plugin.rs @@ -50,7 +50,7 @@ pub fn check_hierarchy_component_has_valid_parent( already_diagnosed.insert(entity); warn!( "warning[B0004]: {name} with the {ty_name} component has a parent without {ty_name}.\n\ - This will cause inconsistent behaviors! See https://bevyengine.org/learn/errors/#B0004", + This will cause inconsistent behaviors! See https://bevyengine.org/learn/errors/#b0004", ty_name = get_short_name(std::any::type_name::()), name = name.map_or("An entity".to_owned(), |s| format!("The {s} entity")), );