aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/client_impl/chat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/src/client_impl/chat.rs')
-rw-r--r--azalea/src/client_impl/chat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/client_impl/chat.rs b/azalea/src/client_impl/chat.rs
index 1a7359f7..2490e08c 100644
--- a/azalea/src/client_impl/chat.rs
+++ b/azalea/src/client_impl/chat.rs
@@ -37,7 +37,7 @@ impl Client {
///
/// ```rust,no_run
/// # use azalea::Client;
- /// # async fn example(bot: Client) -> anyhow::Result<()> {
+ /// # async fn example(bot: Client) -> eyre::Result<()> {
/// bot.chat("Hello, world!");
/// # Ok(())
/// # }