From f7314a34384a5381b729e46f22ad4523e3bf908e Mon Sep 17 00:00:00 2001 From: Piotr Siuszko Date: Thu, 10 Jul 2025 20:16:11 +0200 Subject: [PATCH] Update docs --- crates/bevy_remote/src/schemas/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_remote/src/schemas/mod.rs b/crates/bevy_remote/src/schemas/mod.rs index bd274d2435..b27e7fc40b 100644 --- a/crates/bevy_remote/src/schemas/mod.rs +++ b/crates/bevy_remote/src/schemas/mod.rs @@ -122,7 +122,7 @@ pub(crate) trait RegisterReflectJsonSchemas { where T: Reflect + TypePath + GetTypeRegistration, D: TypeData + FromType; - /// Registers a [`CustomInternalSchemaData`] data type for a type that will force to treat the type as an array during building the [`JsonSchemaBevyType`] for given type. + /// Registers a [`CustomInternalSchemaData`] data type for a type that will force to treat the type as an array during building the [`json_schema::JsonSchemaBevyType`] for given type. /// It is useful when you want to force the type to be treated as an array in the schema, for example when type has custom serialization. fn registry_force_schema_to_be_array(&mut self) where