From 0b0622dfcee2bd433b4ea4c44549eab5a7426b05 Mon Sep 17 00:00:00 2001 From: ericu07 <57630135+ericu07@users.noreply.github.com> Date: Mon, 2 Mar 2026 20:47:10 +0100 Subject: [PATCH] doc: add missing ; in _stext example --- cortex-m-rt/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs index 7d2cac1d..cb90b43c 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -110,7 +110,7 @@ //! } //! //! /* The device stores Flash configuration in 0x400-0x40C so we place .text after that */ -//! _stext = ORIGIN(FLASH) + 0x40C +//! _stext = ORIGIN(FLASH) + 0x40C; //! ``` //! //! # An example