Skip to content

Commit

Permalink
Indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Dec 18, 2012
1 parent 38e9871 commit 72f2448
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions CONTRIBUTING.md
Expand Up @@ -8,16 +8,16 @@
* Quote all String variables.
* Prefer single-line expressions where appropriate:

[[ -n "$foo" ]] && other command
[[ -n "$foo" ]] && other command

if [[ "$foo" == "bar" ]]; then command
elif [[ "$foo" == "baz" ]]; then other_command
fi
if [[ "$foo" == "bar" ]]; then command
elif [[ "$foo" == "baz" ]]; then other_command
fi

case "$foo" in
bar) command ;;
baz) other_command ;;
esac
case "$foo" in
bar) command ;;
baz) other_command ;;
esac

## Pull Request Guidelines

Expand Down

0 comments on commit 72f2448

Please sign in to comment.