Changes between Version 4 and Version 5 of CodingStandards
- Timestamp:
- 2009-05-19T19:24:14Z (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStandards
v4 v5 10 10 === naming and layout === 11 11 12 * Use {{{underscore_separated_names}}} for functions, {{{CamelCapNames}}} for classes, {{{all _lower_case_names}}} 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.12 * 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 13 * Put parenthesis around tuples if it helps make the code more readable, leave them off it not. 14 14