Typo in CONTRIBUTING.md (dylanaraps#2246)

Thanks for Ekatwikz's committing.
This commit is contained in:
Jin Asanami 2022-11-29 11:43:27 +09:00 committed by GitHub
parent 7ecce194f9
commit a32910c8d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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