File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ use std::path::Path;
55
66#[ derive( Deserialize , Debug ) ]
77pub 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 ) ]
3737pub 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}
You can’t perform that action at this time.
0 commit comments