aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--azalea-client/src/chat.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-client/src/chat.rs b/azalea-client/src/chat.rs
index 18fa4549..b771a743 100644
--- a/azalea-client/src/chat.rs
+++ b/azalea-client/src/chat.rs
@@ -11,9 +11,9 @@ use crate::Client;
impl Client {
/// Sends chat message to the server. This only sends the chat packet and
- /// not the command packet. The [`Client::chat`] function handles checking whether
- /// the message is a command and using the proper packet for you, so you
- /// should use that instead.
+ /// not the command packet. The [`Client::chat`] function handles checking
+ /// whether the message is a command and using the proper packet for you,
+ /// so you should use that instead.
pub async fn send_chat_packet(&self, message: &str) -> Result<(), std::io::Error> {
// TODO: chat signing
let signature = sign_message();