From 549006500fb36031b3d3d3e0db133ccdf7b305a1 Mon Sep 17 00:00:00 2001 From: Joachim Thomassen Date: Wed, 10 Sep 2025 14:15:23 +0200 Subject: [PATCH] docs: use correct chapter number in referenced path --- mdbook/src/11-uart/send-a-single-byte.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdbook/src/11-uart/send-a-single-byte.md b/mdbook/src/11-uart/send-a-single-byte.md index 82f143df..96ef771a 100644 --- a/mdbook/src/11-uart/send-a-single-byte.md +++ b/mdbook/src/11-uart/send-a-single-byte.md @@ -4,7 +4,7 @@ Our first task will be to send a single byte from the microcontroller to the com serial connection. In order to do that we will use the following snippet (this one is already in -`10-uart/examples/send-byte.rs`): +`11-uart/examples/send-byte.rs`): ``` rust {{#include examples/send-byte.rs}}