Skip to content

Commit

Permalink
Merge pull request #45 from BMorearty/bmorearty/dont-use-not
Browse files Browse the repository at this point in the history
Use bang, not not.
  • Loading branch information
clizzin committed Apr 1, 2015
2 parents 7e49cfd + 040355a commit 41525e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -535,7 +535,7 @@ In either case:
end
```

* The `and` and `or` keywords are banned. It's just not worth it. Always use `&&` and `||` instead.
* The `and`, `or`, and `not` keywords are banned. It's just not worth it. Always use `&&`, `||`, and `!` instead.

* Modifier `if/unless` usage is okay when the body is simple, the
condition is simple, and the whole thing fits on one line. Otherwise,
Expand Down

0 comments on commit 41525e5

Please sign in to comment.