From e517e3534b1ec9cc2cc0dc1aedb19b40119febcb Mon Sep 17 00:00:00 2001 From: iTrooz Date: Tue, 24 Oct 2023 17:25:43 +0200 Subject: [PATCH] patterns: fix description pragmas (#181) --- patterns/intel_hex.hexpat | 2 +- patterns/uf2.hexpat | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/patterns/intel_hex.hexpat b/patterns/intel_hex.hexpat index bf2ce88..732beb3 100644 --- a/patterns/intel_hex.hexpat +++ b/patterns/intel_hex.hexpat @@ -1,4 +1,4 @@ -#pragma description [Intel hexadecimal object file format definition]("https://en.wikipedia.org/wiki/Intel_HEX") +#pragma description Intel hexadecimal object file format definition /* If you have no delimiters between data records then remove * the null_bytes field in the data_packet struct. diff --git a/patterns/uf2.hexpat b/patterns/uf2.hexpat index fe321b9..f3fdd75 100644 --- a/patterns/uf2.hexpat +++ b/patterns/uf2.hexpat @@ -1,5 +1,5 @@ #pragma author WerWolv -#pragma description [USB Flashing Format](https://github.com/microsoft/uf2) +#pragma description USB Flashing Format #include #include @@ -98,4 +98,4 @@ struct UF2_Block { std::assert(magicEnd == 0x0AB16F30, "Invalid magicEnd value!"); }; -UF2_Block block[while(!std::mem::eof())] @ 0; \ No newline at end of file +UF2_Block block[while(!std::mem::eof())] @ 0;