From 7db3006f444dc13aeda170fd3202c02248f58f17 Mon Sep 17 00:00:00 2001 From: Marijn Schouten Date: Tue, 30 Jun 2026 14:54:59 +0200 Subject: [PATCH] Fix formatting issues in framing.md --- content/tokio/tutorial/framing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tokio/tutorial/framing.md b/content/tokio/tutorial/framing.md index 406a78ac..05b43b77 100644 --- a/content/tokio/tutorial/framing.md +++ b/content/tokio/tutorial/framing.md @@ -180,7 +180,7 @@ pub async fn read_frame(&mut self) Let's break this down. The `read_frame` method operates in a loop. First, `self.parse_frame()` is called. This will attempt to parse a redis frame from `self.buffer`. If there is enough data to parse a frame, the frame is returned -to the caller of `read_frame()`.Otherwise, we attempt to read more data from the +to the caller of `read_frame()`. Otherwise, we attempt to read more data from the socket into the buffer. After reading more data, `parse_frame()` is called again. This time, if enough data has been received, parsing may succeed.