fix typos

This commit is contained in:
Torsten Ruger
2018-03-20 15:52:16 +05:30
parent 5504eb4714
commit 6d0d9b39e1
4 changed files with 17 additions and 32 deletions

View File

@ -1,7 +1,6 @@
# Code Style and Conventions
Just few things that have become important enough to write down. Apart from what is written here
standard blah applies (ie RoboCop/Reek stuff).
Just few things that have become important enough to write down. Apart from what is written here standard blah applies (ie RoboCop/Reek stuff).
## Formatting
@ -11,14 +10,10 @@ While the days of 80 are over, too big steps seems difficult. I've settled on 10
### Brackets
While ruby allows the ommision of brackets even with arguments, i try to avoid that because
of readablity. There may be an exception for an assignment, a single call with a single arg.
While ruby allows the omission of brackets even with arguments, i try to avoid that because
of readability. There may be an exception for an assignment, a single call with a single arg.
Brackets without arguments look funny though.
### Hash
I still prefer 1.9 => style , it makes the association more obvious.
## Code style
### Module functions are global