@@ -135,7 +135,7 @@ Refer to [/test/functional/README.md#style-guidelines](/test/functional/README.m
135135Coding Style (Doxygen-compatible comments)
136136------------------------------------------
137137
138- Bitcoin Core uses [ Doxygen] ( http ://www.doxygen.nl/) to generate its official documentation.
138+ Bitcoin Core uses [ Doxygen] ( https ://www.doxygen.nl/) to generate its official documentation.
139139
140140Use Doxygen-compatible comment blocks for functions, methods, and fields.
141141
@@ -156,7 +156,7 @@ For example, to describe a function use:
156156bool function (int arg1, const char * arg2, std::string& arg3)
157157```
158158
159- A complete list of `@xxx` commands can be found at http ://www.doxygen.nl/manual/commands.html.
159+ A complete list of `@xxx` commands can be found at https ://www.doxygen.nl/manual/commands.html.
160160As Doxygen recognizes the comments by the delimiters (`/**` and `*/` in this case), you don't
161161*need* to provide any commands for a comment to be valid; just a description text is fine.
162162
@@ -203,7 +203,7 @@ Also not picked up by Doxygen:
203203 */
204204```
205205
206- A full list of comment syntaxes picked up by Doxygen can be found at http ://www.doxygen.nl/manual/docblocks.html ,
206+ A full list of comment syntaxes picked up by Doxygen can be found at https ://www.doxygen.nl/manual/docblocks.html ,
207207but the above styles are favored.
208208
209209Recommendations:
@@ -216,7 +216,7 @@ Recommendations:
216216
217217- Backticks aren't required when referring to functions Doxygen already knows
218218 about; it will build hyperlinks for these automatically. See
219- http ://www.doxygen.nl/manual/autolink.html for complete info.
219+ https ://www.doxygen.nl/manual/autolink.html for complete info.
220220
221221- Avoid linking to external documentation; links can break.
222222
0 commit comments