[Doxygen-users] Doxygen creates unnecessary (unwanted) paragraphs.
Brought to you by:
dimitri
|
From: Julian <jul...@we...> - 2016-06-02 07:44:05
|
Hello everyone!
I recently started with doxygen and immediately ran into a problem.
I wanted to document a method with a small paragraph of text, but for
some reason, Doxygen keeps splitting the paragraph into two.
This is the documentation in code:
/**
* Returns the next character in the file without actually
consuming it.
* Once the end of the file is reached, this method returns the char
* equivalent of -1.
*/
char look();
I expect Doxygen to create a documentation in a single paragraph, which
would look like this:
Returns the next character in the file without actually consuming it.
Once the end of the file is reached, this method returns the char
equivalent of -1.
However, I get this instead:
Returns the next character in the file without actually consuming it.
Once the end of the file is reached, this method returns the char
equivalent of -1.
This also persists if I put the in-code documentation in one single line.
Could you maybe point me in the right direction what I am doing wrong or
what option I may have set wrongly in the configuration file?
Thanks in advance!
|