summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-04 07:47:52 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-04 07:47:52 +0100
commit43f7f37d93365dee709c1f54286d9f21ca546eab (patch)
tree441dd29f7fb2bd7097e978c112a60d5179f45d3d /CONTRIBUTING.md
parentMerge pull request #249 from lioncash/enum (diff)
downloadyuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.tar
yuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.tar.gz
yuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.tar.bz2
yuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.tar.lz
yuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.tar.xz
yuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.tar.zst
yuzu-43f7f37d93365dee709c1f54286d9f21ca546eab.zip
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 82b66be75..c8c8e3884 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -27,6 +27,7 @@ Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spac
### Comments
* For regular comments, use C++ style (`//`) comments, even for multi-line ones.
* For doc-comments (Doxygen comments), use `/// ` if it's a single line, else use the `/**` `*/` style featured in the example. Start the text on the second line, not the first containing `/**`.
+* For items that are both defined and declared in two separate files, put the doc-comment only next to the associated declaration. (In a header file, usually.) Otherwise, put it next to the implementation. Never duplicate doc-comments in both places.
```cpp
namespace Example {