summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-02 16:45:16 (GMT)
committerGitHub <noreply@github.com>2019-08-02 16:45:16 (GMT)
commit2a8d6b0107f79829fc4507d0629b3027ff605d52 (patch)
tree8a7a6f1525722cc178e48a97e3e80dbaf857e7c7
parentfedfa899d52bf819d88f57d70d549b5c281c28fb (diff)
parentb0a9f75cc1894e8261ec2e95fa171a5534a65328 (diff)
downloadDoxygen-2a8d6b0107f79829fc4507d0629b3027ff605d52.zip
Doxygen-2a8d6b0107f79829fc4507d0629b3027ff605d52.tar.gz
Doxygen-2a8d6b0107f79829fc4507d0629b3027ff605d52.tar.bz2
Merge pull request #7157 from albert-github/feature/bug_doc_unbalanced
warning: Member func2InGroup1() (function) of class Memgrp_Test is not documented.
-rw-r--r--doc/commands.doc2
-rw-r--r--examples/memgrp.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/commands.doc b/doc/commands.doc
index 6c8b696..48991fb 100644
--- a/doc/commands.doc
+++ b/doc/commands.doc
@@ -849,7 +849,7 @@ Structural indicators
This command turns a comment block into a header
definition of a member group. The
comment block should be followed by a
- <code>//\@{ ... //\@}</code> block containing the
+ <code>///\@{ ... ///\@}</code> block containing the
members of the group.
See section \ref memgroup for an example.
diff --git a/examples/memgrp.cpp b/examples/memgrp.cpp
index 9a24774..fdcf028 100644
--- a/examples/memgrp.cpp
+++ b/examples/memgrp.cpp
@@ -2,11 +2,11 @@
class Memgrp_Test
{
public:
- //@{
+ ///@{
/** Same documentation for both members. Details */
void func1InGroup1();
void func2InGroup1();
- //@}
+ ///@}
/** Function without group. Details. */
void ungroupedFunction();