From f8ab6c4eeba6bfd8c973ee90256c16787c779003 Mon Sep 17 00:00:00 2001 From: terrell <> Date: Sat, 21 Nov 2009 05:58:10 +0000 Subject: [PATCH] fix another typo :P [Imported from Trac: page CodingStandards, version 11] --- CodingStandards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodingStandards.md b/CodingStandards.md index 349aa8f..1c8d75f 100644 --- a/CodingStandards.md +++ b/CodingStandards.md @@ -10,7 +10,7 @@ Tahoe requires Python v2.4.2 or greater. No effort should be made to offer compa ### naming and layout * 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. - * Put parenthesis around tuples if it helps make the code more readable, leave them off if not. + * Put parentheses around tuples if it helps make the code more readable, leave them off if not. ### comments, idioms, miscellany, license, imports, docstrings, line widths