summaryrefslogtreecommitdiffstats
path: root/doc/faq.doc
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-01-03 15:37:34 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-01-03 15:37:34 (GMT)
commit4f80d144f98fc998de5118855eec73797a65bf2e (patch)
treeeffd54caf7c9372abb85825ec41f3bd90172561f /doc/faq.doc
parent89ef13dbb6c8ac81a9c118f4f031c45cdc66e3a3 (diff)
downloadDoxygen-4f80d144f98fc998de5118855eec73797a65bf2e.zip
Doxygen-4f80d144f98fc998de5118855eec73797a65bf2e.tar.gz
Doxygen-4f80d144f98fc998de5118855eec73797a65bf2e.tar.bz2
Adjusted Doxygen to doxygen in running text in the manual
Diffstat (limited to 'doc/faq.doc')
-rw-r--r--doc/faq.doc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/faq.doc b/doc/faq.doc
index bd327a1..d1845e0 100644
--- a/doc/faq.doc
+++ b/doc/faq.doc
@@ -97,12 +97,12 @@ with a \ref cmdcond "\\cond" command at the start and one comment block
with a \ref cmdendcond "\\endcond" command at the end of the piece of
code that should be ignored. This should be within the same file of course.
-But you can also use Doxygen's preprocessor for this:
+But you can also use doxygen's preprocessor for this:
If you put
\verbatim
#ifndef DOXYGEN_SHOULD_SKIP_THIS
- /* code that must be skipped by Doxygen */
+ /* code that must be skipped by doxygen */
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
\endverbatim
@@ -110,7 +110,7 @@ around the blocks that should be hidden and put:
\verbatim
PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS
\endverbatim
-in the config file then all blocks should be skipped by Doxygen as long
+in the config file then all blocks should be skipped by doxygen as long
as \ref cfg_enable_preprocessing "ENABLE_PREPROCESSING" is set to `YES`.
\section faq_code_inc How can I change what is after the <code>\#include</code> in the class documentation?