aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-04-03 11:49:36 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-04-03 11:58:01 +0200
commitfada0c422c081ba53a324aaf63c0a750cb56498e (patch)
treecb5bfc67fed9a66c67582fa4ade5fe77b8442259 /doc
parent30c2dd8d0598afac9319d3a813a89a682b9c0d34 (diff)
downloadbitcoin-fada0c422c081ba53a324aaf63c0a750cb56498e.tar.xz
[doc] Fix doxygen comments for members
Diffstat (limited to 'doc')
-rw-r--r--doc/developer-notes.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index 358792251b..8affb2158a 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -71,6 +71,12 @@ To describe a member or variable use:
int var; //!< Detailed description after the member
```
+or
+```cpp
+//! Description before the member
+int var;
+```
+
Also OK:
```c++
///