From ad08f425ee128562a4bfeb2657662dacfd52b624 Mon Sep 17 00:00:00 2001 From: Denis Bazhenov Date: Sun, 16 Nov 2025 12:25:37 +0100 Subject: [PATCH] Fix trailing comma in cargo-embed.mdx example --- src/content/docs/tools/cargo-embed.mdx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/content/docs/tools/cargo-embed.mdx b/src/content/docs/tools/cargo-embed.mdx index 17f7d4b..d3ef892 100644 --- a/src/content/docs/tools/cargo-embed.mdx +++ b/src/content/docs/tools/cargo-embed.mdx @@ -242,24 +242,24 @@ fn main() -> ! { let channels = rtt_init! { up: { 0: { - size: 512 - mode: BlockIfFull - name: "Up zero" + size: 512, + mode: BlockIfFull, + name: "Up zero", } 1: { - size: 128 - name: "Up one" + size: 128, + name: "Up one", } 2: { - size: 128 - name: "Up two" + size: 128, + name: "Up two", } } down: { 0: { - size: 512 - mode: BlockIfFull - name: "Down zero" + size: 512, + mode: BlockIfFull, + name: "Down zero", } } };