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:
parent
50f1cc47fa
commit
0a20160272
1 changed files with 3 additions and 3 deletions
|
@ -11,9 +11,9 @@ use crate::Client;
|
||||||
|
|
||||||
impl Client {
|
impl Client {
|
||||||
/// Sends chat message to the server. This only sends the chat packet and
|
/// Sends chat message to the server. This only sends the chat packet and
|
||||||
/// not the command packet. The [`Client::chat`] function handles checking whether
|
/// not the command packet. The [`Client::chat`] function handles checking
|
||||||
/// the message is a command and using the proper packet for you, so you
|
/// whether the message is a command and using the proper packet for you,
|
||||||
/// should use that instead.
|
/// so you should use that instead.
|
||||||
pub async fn send_chat_packet(&self, message: &str) -> Result<(), std::io::Error> {
|
pub async fn send_chat_packet(&self, message: &str) -> Result<(), std::io::Error> {
|
||||||
// TODO: chat signing
|
// TODO: chat signing
|
||||||
let signature = sign_message();
|
let signature = sign_message();
|
||||||
|
|
Loading…
Add table
Reference in a new issue