diff options
| author | marcuswin <[email protected]> | 2019-02-14 13:48:53 +0300 |
|---|---|---|
| committer | fanquake <[email protected]> | 2019-03-02 17:42:33 +0800 |
| commit | 10c7642a57b2834251448ba08b1b0c25850c4a31 (patch) | |
| tree | ee9fad40aac69bf51b704fbfc3a052afaa4989ca /doc/developer-notes.md | |
| parent | Merge #15510: [rpc] deriveaddresses: add range to CRPCConvertParam (diff) | |
| download | discoin-10c7642a57b2834251448ba08b1b0c25850c4a31.tar.xz discoin-10c7642a57b2834251448ba08b1b0c25850c4a31.zip | |
docs: Update Transifex links
Diffstat (limited to 'doc/developer-notes.md')
| -rw-r--r-- | doc/developer-notes.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index f765346cd..2662eea8f 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -144,7 +144,7 @@ For example, to describe a function use: */ bool function(int arg1, const char *arg2) ``` -A complete list of `@xxx` commands can be found at http://www.stack.nl/~dimitri/doxygen/manual/commands.html. +A complete list of `@xxx` commands can be found at http://www.doxygen.nl/manual/commands.html. As Doxygen recognizes the comments by the delimiters (`/**` and `*/` in this case), you don't *need* to provide any commands for a comment to be valid; just a description text is fine. @@ -185,7 +185,7 @@ Not OK (used plenty in the current source, but not picked up): // ``` -A full list of comment syntaxes picked up by Doxygen can be found at https://www.stack.nl/~dimitri/doxygen/manual/docblocks.html, +A full list of comment syntaxes picked up by Doxygen can be found at http://www.doxygen.nl/manual/docblocks.html, but the above styles are favored. Documentation can be generated with `make docs` and cleaned up with `make clean-docs`. The resulting files are located in `doc/doxygen/html`; open `index.html` to view the homepage. |