diff --git a/README.md b/README.md
index 20b5ba79fcb5872cfaf7e0355e25e1eca468cd2e..de0784220305a65c879c2c111e17b6b4fb60f7a7 100644
--- a/README.md
+++ b/README.md
@@ -2,12 +2,13 @@
 
 # `cortex-m-debug`
 
-> Interleaving ITM print support
-+ simple to use, just `ipln!(...)`
-+ no need to `borrow/get` the ITM
-+ no need to pass ITM around to tasks in `cortex-m-rtfm`
-+ non intrusive with respect to scheduling (no `claim` needed using `cortex-m-rtfm`)
-+/- ITM output will be interleaved on preemption.
+> Interleaving ITM print support.
+> + simple to use, just `ipln!(...)`.
+> + no need to `borrow/get` the ITM.
+> + no need to pass ITM around to tasks in `cortex-m-rtfm`.
+> + non intrusive with respect to scheduling (no `claim` needed using `cortex-m-rtfm`).
+
+ITM output will be interleaved on preemption. If you don't want interleaving, stick with the `iprintln!` from the `cortex-m` crate.
 
 # Usage