From 3ae14209a471c762846e6c8195191fdad749af2c Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Sat, 29 Apr 2023 23:08:35 +0800 Subject: [PATCH] Fix typo, Maxmium -> Maximum (#81) Found via `codespell -L crate` --- src/shared.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared.rs b/src/shared.rs index df91830..10b1bc8 100644 --- a/src/shared.rs +++ b/src/shared.rs @@ -14,7 +14,7 @@ use uuid::Uuid; /// TCP port used for control connections with the server. 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; /// Timeout for network connections and initial protocol messages.