Skip to content

Commit ce01133

Browse files
committed
fix import path
1 parent 39935a7 commit ce01133

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

crates/bevy_api_gen/src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pub(crate) const DEF_PATHS_BMS_FROM_SCRIPT: [&str; 2] = [
8686
"bindings::FromScript",
8787
];
8888
pub(crate) const DEF_PATHS_BMS_INTO_SCRIPT: [&str; 2] = [
89-
"bevy_mod_scripting_core::bindings:IntoScript",
89+
"bevy_mod_scripting_core::bindings::IntoScript",
9090
"bindings::IntoScript",
9191
];
9292

crates/bevy_api_gen/src/passes/cache_traits.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ fn dump_traits(tcx: &TyCtxt) -> String{
1212
let mut buffer = String::new();
1313
for t in tcx.all_traits() {
1414
buffer.push_str(&tcx.def_path_str(t));
15+
buffer.push_str(", ");
1516
}
1617
buffer
1718
}

0 commit comments

Comments
 (0)