Skip to content

Commit

Permalink
Extend identifier naming example
Browse files Browse the repository at this point in the history
  • Loading branch information
Bozhidar Batsov committed Aug 16, 2013
1 parent a85ef90 commit 558b04c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,10 @@ setting the warn level to 0 via `-W0`).
* Name identifiers in English.
```Ruby
# bad - variable name written in Bulgarian with latin characters
# bad - identifier using non-ascii characters
заплата = 1_000
# bad - identifier is a Bulgarian word, written with Latin letters (instead of Cyrillic)
zaplata = 1_000
# good
Expand Down

0 comments on commit 558b04c

Please sign in to comment.