From 1d74eae2e16c68be2f5bcf200d1440f5d3ecf85a Mon Sep 17 00:00:00 2001 From: Ben Whitley Date: Sat, 11 Jan 2025 19:02:14 -0500 Subject: [PATCH] Fixed missing backticks --- crates/bevy_remote/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_remote/src/lib.rs b/crates/bevy_remote/src/lib.rs index 5099cc0382807..bbb8e18cc37ba 100644 --- a/crates/bevy_remote/src/lib.rs +++ b/crates/bevy_remote/src/lib.rs @@ -194,7 +194,7 @@ //! //! `result`: null. //! -//! ### bevy/mutate_component +//! ### `bevy/mutate_component` //! //! Mutate a field in a component. //! @@ -202,7 +202,7 @@ //! - `entity`: The ID of the entity to with the component to mutate. //! - `component`: The component's [fully-qualified type name]. //! - `path`: The path of the field within the component. See -//! [GetPath](bevy_reflect::GetPath#syntax) for more information on formatting this string. +//! [`GetPath`](bevy_reflect::GetPath#syntax) for more information on formatting this string. //! - `value`: The value to insert at `path`. //! //! `result`: null.