From 6545b051887cd6944557901015b4c5b54a2b6848 Mon Sep 17 00:00:00 2001 From: Matt Bhagat-Conway Date: Thu, 3 Jul 2025 10:37:49 -0400 Subject: fix rustfmt in read_to_break docstring --- embassy-rp/src/uart/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-rp/src/uart/mod.rs b/embassy-rp/src/uart/mod.rs index b730d33e3..cfbce493c 100644 --- a/embassy-rp/src/uart/mod.rs +++ b/embassy-rp/src/uart/mod.rs @@ -544,7 +544,7 @@ impl<'d> UartRx<'d, Async> { /// * If you expect a message of 20 bytes + line break, and provide a 21-byte buffer: /// * The first call to `read_to_break()` will return `Ok(20)`. /// * The next call to `read_to_break()` will work as expected - /// + /// /// **NOTE**: In the UART context, a line break refers to a break condition (the line being held low for /// for longer than a single character), not an ASCII line break. pub async fn read_to_break_with_count( -- cgit