aboutsummaryrefslogtreecommitdiff
path: root/azalea/examples/echo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/examples/echo.rs')
-rw-r--r--azalea/examples/echo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/examples/echo.rs b/azalea/examples/echo.rs
index 09c3d5d3..0f59be2a 100644
--- a/azalea/examples/echo.rs
+++ b/azalea/examples/echo.rs
@@ -25,7 +25,7 @@ async fn handle(bot: Client, event: Event, _state: State) -> anyhow::Result<()>
// ignore our own messages
return Ok(());
}
- bot.chat(&content);
+ bot.chat(content);
}
Ok(())