aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUbuntu <github@matdoes.dev>2022-11-03 18:00:29 +0000
committerUbuntu <github@matdoes.dev>2022-11-03 18:00:29 +0000
commit0a201602720cc20e0782906d9bce5504a5b64057 (patch)
treec7fffd2a41d69241b0cb64b28b4491c1d3014e98
parent50f1cc47fa8a115d59dad2df941875bf741bbf88 (diff)
downloadazalea-drasl-0a201602720cc20e0782906d9bce5504a5b64057.tar.xz
change comment to be less than 80 width
-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();