CodingStyle changed

Comments identation
This commit is contained in:
Joanna Rutkowska 2013-04-19 18:25:03 +00:00
parent f94d715cc1
commit 92d58e4492

View File

@ -40,6 +40,17 @@ General typographic conventions
- **Use descriptive names for variables and functions**! Really, these days, when most editors have auto-completion feature, there is no excuse for using short variable names.
- Comments should be indent together with the code, e.g. like this:
``` {.wiki}
for (...) {
// The following code finds PGP private key matching the given public key in O(1)
while (key_found) {
(...)
}
}
```
File naming conventions
-----------------------