We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39935a7 commit ce01133Copy full SHA for ce01133
crates/bevy_api_gen/src/context.rs
@@ -86,7 +86,7 @@ pub(crate) const DEF_PATHS_BMS_FROM_SCRIPT: [&str; 2] = [
86
"bindings::FromScript",
87
];
88
pub(crate) const DEF_PATHS_BMS_INTO_SCRIPT: [&str; 2] = [
89
- "bevy_mod_scripting_core::bindings:IntoScript",
+ "bevy_mod_scripting_core::bindings::IntoScript",
90
"bindings::IntoScript",
91
92
crates/bevy_api_gen/src/passes/cache_traits.rs
@@ -12,6 +12,7 @@ fn dump_traits(tcx: &TyCtxt) -> String{
12
let mut buffer = String::new();
13
for t in tcx.all_traits() {
14
buffer.push_str(&tcx.def_path_str(t));
15
+ buffer.push_str(", ");
16
}
17
buffer
18
0 commit comments