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 e8bed49 commit aa87af0Copy full SHA for aa87af0
crates/bevy_mod_scripting_core/src/lib.rs
@@ -236,7 +236,7 @@ impl<P: IntoScriptPluginParams + AsMut<ScriptingPlugin<P>>> ConfigureScriptPlugi
236
}
237
238
/// Ensures all types with `ReflectComponent` type data are pre-registered with component ID's
239
-fn pre_register_componnents(app: &mut App) {
+fn pre_register_components(app: &mut App) {
240
let type_registry = app
241
.world_mut()
242
.get_resource_or_init::<AppTypeRegistry>()
@@ -294,7 +294,7 @@ impl Plugin for BMSScriptingInfrastructurePlugin {
294
});
295
296
// pre-register component id's
297
- pre_register_componnents(app);
+ pre_register_components(app);
298
DynamicScriptComponentPlugin.finish(app);
299
300
0 commit comments