diff options
Diffstat (limited to 'Master/tlpkg/doc/coding-style.txt')
-rw-r--r-- | Master/tlpkg/doc/coding-style.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/doc/coding-style.txt b/Master/tlpkg/doc/coding-style.txt index 087322cce66..664c5bc08a7 100644 --- a/Master/tlpkg/doc/coding-style.txt +++ b/Master/tlpkg/doc/coding-style.txt @@ -5,7 +5,7 @@ This is all trying to record our general conventions, not absolute rules. Aside from personal preferences, sometimes exceptions are necessary. -* In general it's best to start scripts #!/usr/bin/env perl. +* In general, it's best to start scripts #!/usr/bin/env perl. * Start the code with the various require and use statements, @@ -34,6 +34,7 @@ top-down rather than bottom-up. So main would come first. * Normal indentation is two spaces per level. +Put a space around operators (=, =~, +, etc.). Put a space between arguments of function calls. Karl puts a space before the ( of function calls but no one else does :). |