diff --git a/CodingStyle b/CodingStyle index 36476c5..e4cf101 100644 --- a/CodingStyle +++ b/CodingStyle @@ -35,6 +35,11 @@ And they are camelCased. So: serverIpAddressAndPortCouple and NOT serverAddress (or, God forbid, address) +XML element names are also camelCased: . + +Python class names and XML element type names have the first letter of each word capitalized: "Card", "RequestForm". +"XML" is a word. Therefore: class XmlHolder (not XMLHolder) + End of file -----------