Fix typo, Maxmium -> Maximum (#81)

Found via `codespell -L crate`
This commit is contained in:
Kian-Meng Ang 2023-04-29 23:08:35 +08:00 committed by GitHub
parent f8ccbae378
commit 3ae14209a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ use uuid::Uuid;
/// TCP port used for control connections with the server. /// TCP port used for control connections with the server.
pub const CONTROL_PORT: u16 = 7835; pub const CONTROL_PORT: u16 = 7835;
/// Maxmium byte length for a JSON frame in the stream. /// Maximum byte length for a JSON frame in the stream.
pub const MAX_FRAME_LENGTH: usize = 256; pub const MAX_FRAME_LENGTH: usize = 256;
/// Timeout for network connections and initial protocol messages. /// Timeout for network connections and initial protocol messages.