1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00
This commit is contained in:
mat 2025-06-27 14:00:26 -09:00
parent 2064450763
commit 5564d475a2
3 changed files with 5 additions and 5 deletions

View file

@ -155,7 +155,7 @@ fn parse_incomplete_argument() {
}
#[test]
fn execute_ambiguious_parent_subcommand() {
fn execute_ambiguous_parent_subcommand() {
let mut subject = CommandDispatcher::new();
subject.register(
@ -168,7 +168,7 @@ fn execute_ambiguious_parent_subcommand() {
}
#[test]
fn execute_ambiguious_parent_subcommand_via_redirect() {
fn execute_ambiguous_parent_subcommand_via_redirect() {
let mut subject = CommandDispatcher::new();
let real = subject.register(

View file

@ -23,8 +23,8 @@ impl Plugin for PlayerLoadedPlugin {
// this component is removed on respawn or disconnect
// (notably, it's not removed on login)
// mojmap interchangably calls it 'has client loaded' and 'has player loaded', i
// prefer the client one because it makes it clear that the component is only
// mojmap interchangeably calls it 'has client loaded' and 'has player loaded',
// i prefer the client one because it makes it clear that the component is only
// present on our own clients
#[derive(Component)]

View file

@ -147,7 +147,7 @@ impl PartialEntityInfos {
///
/// Also see [`PartialInstance`].
///
/// This is sometimes interchangably called a "world". However, this type is
/// This is sometimes interchangeably called a "world". However, this type is
/// called `Instance` to avoid colliding with the `World` type from Bevy ECS.
#[derive(Default, Debug)]
pub struct Instance {