From f0097612473d20ebac21e8ae5eba32bf32c2fe42 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 9 Dec 2022 15:13:08 +0000 Subject: [PATCH] fix example in docs --- azalea/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index 3752573f..7388ec14 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -64,7 +64,7 @@ //! async fn handle(bot: Client, event: Event, state: State) -> anyhow::Result<()> { //! match event { //! Event::Chat(m) => { -//! println!(m.message().to_ansi()); +//! println!("{}", m.message().to_ansi()); //! } //! _ => {} //! }