From ec7df3fdfdcf68a351b1c624caf2e99c4faf287d Mon Sep 17 00:00:00 2001 From: Erik Cervin-Edin Date: Fri, 17 Oct 2025 22:26:11 +0200 Subject: [PATCH] Update make-best-practices.md Underscore should not be escaped with a backslash --- docs/best-practices/developer/makefile.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/best-practices/developer/makefile.mdx b/docs/best-practices/developer/makefile.mdx index efdfeb2cf..f83f39706 100644 --- a/docs/best-practices/developer/makefile.mdx +++ b/docs/best-practices/developer/makefile.mdx @@ -128,7 +128,7 @@ Simply add this code snippet to your `Makefile` and you'll get this functionalit ## This help screen help: @printf "Available targets:\n\n" - @awk '/^[a-zA-Z\-\_0-9%:\\]+/ { \ + @awk '/^[a-zA-Z\-_0-9%:\\]+/ { \ helpMessage = match(lastLine, /^## (.*)/); \ if (helpMessage) { \ helpCommand = $$1; \