From 86c0c2553404ab359848f0a91097164ca5969522 Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Wed, 24 Jun 2020 10:57:46 +0200 Subject: [PATCH] dk-run: fix typo --- tools/dk-run/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dk-run/src/main.rs b/tools/dk-run/src/main.rs index 32d46da..35b1dce 100644 --- a/tools/dk-run/src/main.rs +++ b/tools/dk-run/src/main.rs @@ -208,7 +208,7 @@ fn notmain() -> Result { if try_index < NUM_RETRIES { log::info!("Could not attach because the target's RTT control block isn't initialized (yet). retrying"); } else { - log::info!("Max number RTT attach of retries exceeded. Did you call dk::init() first thing in your program?"); + log::info!("Max number of RTT attach retries exceeded. Did you call dk::init() first thing in your program?"); return Err(anyhow!(probe_rs_rtt::Error::ControlBlockNotFound)); } }