From c3963ad6b9720cfeca48caf3338ba58e86cf4d34 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 17 Mar 2026 20:29:22 -0700 Subject: [BNTL] Fix misc doc comments missing --- plugins/bntl_utils/src/schema.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/bntl_utils/src/schema.rs b/plugins/bntl_utils/src/schema.rs index 2a9e6d50..e07b1144 100644 --- a/plugins/bntl_utils/src/schema.rs +++ b/plugins/bntl_utils/src/schema.rs @@ -5,9 +5,9 @@ use std::path::Path; #[derive(Deserialize, Debug)] pub struct BntlSchema { - // The list of library names this library depends on + /// The list of library names this library depends on pub dependencies: Vec, - // Maps internal type IDs or names to their external sources + /// Maps internal type IDs or names to their external sources pub type_sources: Vec, } @@ -35,8 +35,8 @@ impl BntlSchema { #[derive(Deserialize, Debug)] pub struct TypeSource { - // The components of the name, e.g., ["std", "string"] + /// The components of the name, e.g., ["std", "string"] pub name: Vec, - // The name of the dependency library it comes from + /// The name of the dependency library it comes from pub source: String, } -- cgit v1.3.1