Skip to content

Commit b573220

Browse files
committed
[BNTL] Fix misc doc comments missing
1 parent c88df04 commit b573220

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugins/bntl_utils/src/schema.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ use std::path::Path;
55

66
#[derive(Deserialize, Debug)]
77
pub struct BntlSchema {
8-
// The list of library names this library depends on
8+
/// The list of library names this library depends on
99
pub dependencies: Vec<String>,
10-
// Maps internal type IDs or names to their external sources
10+
/// Maps internal type IDs or names to their external sources
1111
pub type_sources: Vec<TypeSource>,
1212
}
1313

@@ -35,8 +35,8 @@ impl BntlSchema {
3535

3636
#[derive(Deserialize, Debug)]
3737
pub struct TypeSource {
38-
// The components of the name, e.g., ["std", "string"]
38+
/// The components of the name, e.g., ["std", "string"]
3939
pub name: Vec<String>,
40-
// The name of the dependency library it comes from
40+
/// The name of the dependency library it comes from
4141
pub source: String,
4242
}

0 commit comments

Comments
 (0)