From 5564d475a285c5b40ac74d7123091ce6c63f8c17 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 27 Jun 2025 14:00:26 -0900 Subject: [PATCH] typos --- azalea-brigadier/tests/command_dispatcher_test.rs | 4 ++-- azalea-client/src/plugins/loading.rs | 4 ++-- azalea-world/src/world.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/azalea-brigadier/tests/command_dispatcher_test.rs b/azalea-brigadier/tests/command_dispatcher_test.rs index f04ddfdf..a9dea5bf 100644 --- a/azalea-brigadier/tests/command_dispatcher_test.rs +++ b/azalea-brigadier/tests/command_dispatcher_test.rs @@ -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( diff --git a/azalea-client/src/plugins/loading.rs b/azalea-client/src/plugins/loading.rs index b195868b..4e993a4b 100644 --- a/azalea-client/src/plugins/loading.rs +++ b/azalea-client/src/plugins/loading.rs @@ -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)] diff --git a/azalea-world/src/world.rs b/azalea-world/src/world.rs index 29e8e547..082ba7bc 100644 --- a/azalea-world/src/world.rs +++ b/azalea-world/src/world.rs @@ -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 {