fix syntax in CONTRIBUTING [skip ci]

This commit is contained in:
Timo Schilling 2015-08-18 02:40:13 +02:00
parent c06fb77947
commit 0fc693174e
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ Syntax:
* 80 characters per line.
* No trailing whitespace. Blank lines should not have any space.
* Prefer `&&`/`||` over `and`/`or`.
* `MyClass.my_method(my_arg)` not `my_method( my_arg )` or my_method my_arg.
* `MyClass.my_method(my_arg)` not `my_method( my_arg )` or `my_method my_arg`.
* `a = b` and not `a=b`.
* `a_method { |block| ... }` and not `a_method { | block | ... }` or
`a_method{|block| ...}`.