From f14b449d13cd0d6893ab68f115e32bf6d9837fb8 Mon Sep 17 00:00:00 2001 From: rascul Date: Wed, 22 Jun 2022 19:56:09 -0500 Subject: [PATCH] cargo fmt --- src/client/mudlet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/mudlet.rs b/src/client/mudlet.rs index 8514798..e13c065 100644 --- a/src/client/mudlet.rs +++ b/src/client/mudlet.rs @@ -68,7 +68,7 @@ pub fn parse_log(raw: &Vec) -> Result { } }; - let r = Range { start: 0 as usize, end: size as usize }; + let r = Range { start: 0 as usize, end: size as usize }; let text_chunk: Vec = raw.drain(r).collect(); if text_chunk.len() != size as usize {