summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/bntl_utils/src/schema.rs8
1 files changed, 4 insertions, 4 deletions
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<String>,
- // Maps internal type IDs or names to their external sources
+ /// Maps internal type IDs or names to their external sources
pub type_sources: Vec<TypeSource>,
}
@@ -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<String>,
- // The name of the dependency library it comes from
+ /// The name of the dependency library it comes from
pub source: String,
}