From 85d8f3190b3d60fc5cabc1fee3ecff6d640a65cb Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Tue, 14 Jan 2025 13:53:08 +0100 Subject: [PATCH] Fix test failure with `no-run` vs `no_run` (#723) --- espflash/src/cli/monitor/external_processors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/espflash/src/cli/monitor/external_processors.rs b/espflash/src/cli/monitor/external_processors.rs index 844a4f7..aa1041f 100644 --- a/espflash/src/cli/monitor/external_processors.rs +++ b/espflash/src/cli/monitor/external_processors.rs @@ -14,7 +14,7 @@ //! The executable will get the path of the ELF file as the first argument if available. //! //! Example processor which turns some letters into uppercase -//! ```rust,no-run +//! ```rust,no_run //! use std::io::{stdin, stdout, Read, Write}; //! //! fn main() {