From 6d64481bb83e98df4678b31c1051582fd0928821 Mon Sep 17 00:00:00 2001 From: sunaku Date: Tue, 28 Jun 2011 14:27:13 -0700 Subject: [PATCH] markdown removed the [[ in the if-statement --- Coding-style-guide.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Coding-style-guide.md b/Coding-style-guide.md index 236928a..0ee3458 100644 --- a/Coding-style-guide.md +++ b/Coding-style-guide.md @@ -35,6 +35,8 @@ When possible, use environment variables instead of forking a command. `if-then` statements should be on one line: - if [[ -f $1 ]]; then - ... - fi +```bash +if [[ -f $1 ]]; then + ... +fi +``` \ No newline at end of file