Skip to content

Commit 014c0a8

Browse files
committed
Add note abount comments to coding style
1 parent 2c05c7b commit 014c0a8

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

Development/coding-style-and-guidelines.md

+33
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,39 @@ change; *not* as part of other modifications.
3737
* No trailing white space.
3838
* Maximum line length 110 characters.
3939

40+
## Comments
41+
42+
* In general, comment only what is not obvious from the code.
43+
* APIs intended to be implemented by components independent of the API
44+
itself should be documented properly. Use `include/maxscale/filter.hh`
45+
and `include/maxscale/router.hh` as example.
46+
* On a particular line, the number of characters in documenting text should
47+
not exceed 80, for ease of reading. When counting the characters, any
48+
prepending code or space, due to indentation, is not included. The hard
49+
line length limit of 110 still applies.
50+
51+
```
52+
/*
53+
* Text consisting of 33 characters.
54+
*/
55+
struct S
56+
{
57+
int field; // Text consisting of 33 characters.
58+
};
59+
60+
void f()
61+
{
62+
if (this)
63+
{
64+
if (that)
65+
{
66+
// Text consisting of 33 characters.
67+
...
68+
}
69+
}
70+
}
71+
```
72+
4073
## Indentation Style
4174

4275
We follow the

0 commit comments

Comments
 (0)