diff options
| author | Mason Reed <mason@vector35.com> | 2026-03-17 20:29:22 -0700 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2026-03-24 18:46:48 -0700 |
| commit | c3963ad6b9720cfeca48caf3338ba58e86cf4d34 (patch) | |
| tree | 0c39b2e1491fb929d4c0762d1606a305687c4674 /plugins | |
| parent | b7ee952666a067a1d17b37e628d78eabcb794ccb (diff) | |
[BNTL] Fix misc doc comments missing
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/bntl_utils/src/schema.rs | 8 |
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, } |
