소스 검색

Typo in CONTRIBUTING.md (dylanaraps#2246)

Thanks for Ekatwikz's committing.
Jin Asanami 2 년 전
부모
커밋
a32910c8d6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      CONTRIBUTING.md

+ 1 - 1
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`.