fixed typo in CONTRIBUTING.md

This commit is contained in:
ekatwikz 2022-11-28 17:58:12 +01:00
parent ccd5d9f526
commit 80854d7c83

View file

@ -50,7 +50,7 @@ request on the repo and our Travis.ci hook will run ShellCheck for you.
- Dont use `sed`. - Dont use `sed`.
- Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe). - Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe).
- Dont use `cat`. - Dont use `cat`.
- Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)")`). - Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)"`).
- Dont use `grep "pattern" | awk '{ printf }'`. - Dont use `grep "pattern" | awk '{ printf }'`.
- Use `awk '/pattern/ { printf }'` - Use `awk '/pattern/ { printf }'`
- Dont use `wc`. - Dont use `wc`.