From 80854d7c835facdf6c3744cc898b30b318331370 Mon Sep 17 00:00:00 2001 From: ekatwikz Date: Mon, 28 Nov 2022 17:58:12 +0100 Subject: [PATCH] fixed typo in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f9c0191e..20bf5d7a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,7 +50,7 @@ request on the repo and our Travis.ci hook will run ShellCheck for you. - Don’t use `sed`. - Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe). - Don’t use `cat`. - - Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)")`). + - Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)"`). - Don’t use `grep "pattern" | awk '{ printf }'`. - Use `awk '/pattern/ { printf }'` - Don’t use `wc`.