Merge pull request #783 from g-liu/en-julia

Update the naming conventions in Julia
This commit is contained in:
Levi Bostian 2014-09-22 19:42:44 -05:00
commit 007aa583ba

View File

@ -125,8 +125,9 @@ SomeOtherVar123! = 6 # => 6
# A note on naming conventions in Julia:
#
# * Names of variables are in lower case, with word separation indicated by
# underscores ('\_').
# * Word separation can be indicated by underscores ('_'), but use of
# underscores is discouraged unless the name would be hard to read
# otherwise.
#
# * Names of Types begin with a capital letter and word separation is shown
# with CamelCase instead of underscores.