From f484101c994ae77281abf346168ee86db3335ed8 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Tue, 14 Jan 2025 13:36:51 +0100 Subject: [PATCH] Fix test failure with `no-run` vs `no_run` --- 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 844a4f76..aa1041f9 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() {