Skip to content

Commit db06d5c

Browse files
authored
Update make-best-practices.md
Underscore should not be escaped with a backslash
1 parent c797b2c commit db06d5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/reference/best-practices/make-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Simply add this code snippet to your `Makefile` and you'll get this functionalit
121121
## This help screen
122122
help:
123123
@printf "Available targets:\n\n"
124-
@awk '/^[a-zA-Z\-\_0-9%:\\]+/ { \
124+
@awk '/^[a-zA-Z\-_0-9%:\\]+/ { \
125125
helpMessage = match(lastLine, /^## (.*)/); \
126126
if (helpMessage) { \
127127
helpCommand = $$1; \

0 commit comments

Comments
 (0)