aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-06-27 14:00:26 -0900
committermat <git@matdoes.dev>2025-06-27 14:00:26 -0900
commit5564d475a285c5b40ac74d7123091ce6c63f8c17 (patch)
tree564d07831dfc6555774334aa049b2c8d27921c74
parent206445076373636e5ed126faf77706f9fc990785 (diff)
downloadazalea-drasl-5564d475a285c5b40ac74d7123091ce6c63f8c17.tar.xz
typos
-rw-r--r--azalea-brigadier/tests/command_dispatcher_test.rs4
-rw-r--r--azalea-client/src/plugins/loading.rs4
-rw-r--r--azalea-world/src/world.rs2
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 {