diff --git a/README.md b/README.md
index 32e401e9097f6925e5115608cd81b450af4a0ad3..db4048edc2f9cba0bbde962d31cad0b24d8cb851 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ arm-none-eabi-gdb debug/$TARGET/debug/app
 
 Will take the string from CODED and output the decoded string into PLAIN
 
-## Analysis
+## b Analysis
 
 CODED is globally defined, but only read from and never updated.
 PLAIN however is mutable and will be changed on the "return" of decode()
@@ -52,7 +52,7 @@ Currently there is only one function so it should be safe, however, with
 two tasks this would not be the case. In a typical microcontroller setting
 with interrupt handlers it would be similar "safe" like C.
 
-## Debug vs Release analysis
+## c Debug vs Release analysis
 
 Time taken to decode ABC is `Decoded in 4457 cycles`,
 while in release mode this is reduced to `Decoded in 338 cycles`.