Changes between Version 5 and Version 6 of CodingStandards


Ignore:
Timestamp:
2009-11-21T04:06:34Z (15 years ago)
Author:
zooko
Comment:

fix typo

Legend:

Unmodified
Added
Removed
Modified
  • CodingStandards

    v5 v6  
    1111
    1212 * Use {{{underscore_separated_names}}} for functions, {{{CamelCapNames}}} for classes, {{{alllowercasenames}}} for modules, and {{{ALL_CAPS_NAMES}}} for constants. Use all lower-case variable names (e.g. {{{variable_name}}} or {{{variablename}}}). Prepend a leading underscore to private names.
    13  * Put parenthesis around tuples if it helps make the code more readable, leave them off it not.
     13 * Put parenthesis around tuples if it helps make the code more readable, leave them off if not.
    1414
    1515=== comments, idioms, miscellany, license ===