1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

change comment to be less than 80 width

This commit is contained in:
Ubuntu 2022-11-03 18:00:29 +00:00
parent 50f1cc47fa
commit 0a20160272

View file

@ -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();