aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/pathfinder
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-04-16 07:13:09 +0400
committermat <git@matdoes.dev>2025-04-16 07:13:09 +0400
commit66174fc7d4a1f2f2ee8449a2655c049895b63e7c (patch)
tree644cab0a5e7f3d6d659b1beeaac0840948cec32e /azalea/src/pathfinder
parenta9820dfd79bf24a0a6fcb2345aad6c79a21585a5 (diff)
downloadazalea-drasl-66174fc7d4a1f2f2ee8449a2655c049895b63e7c.tar.xz
clippy and fix broken doc tests
Diffstat (limited to 'azalea/src/pathfinder')
-rw-r--r--azalea/src/pathfinder/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs
index 81ac5337..bd61c4eb 100644
--- a/azalea/src/pathfinder/mod.rs
+++ b/azalea/src/pathfinder/mod.rs
@@ -195,7 +195,7 @@ impl PathfinderClientExt for azalea_client::Client {
/// ```
/// # use azalea::prelude::*;
/// # use azalea::{BlockPos, pathfinder::goals::BlockPosGoal};
- /// # fn example(bot: &Client) {
+ /// # async fn example(bot: &Client) {
/// bot.goto(BlockPosGoal(BlockPos::new(0, 70, 0))).await;
/// # }
/// ```