Commit 31527356 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Corrected some inconsistencies in the comments

parent ba9a873b
...@@ -16,7 +16,7 @@ class ClangParser ...@@ -16,7 +16,7 @@ class ClangParser
/** Start parsing a file. /** Start parsing a file.
* @param[in] fileName The name of the file to parse. * @param[in] fileName The name of the file to parse.
* @param[in,out] filesInTanslationUnit Other files that are * @param[in,out] filesInTranslationUnit Other files that are
* part of the input and included by the file. * part of the input and included by the file.
* The function will return a subset of the files, * The function will return a subset of the files,
* only including the onces that were actually found * only including the onces that were actually found
...@@ -26,7 +26,7 @@ class ClangParser ...@@ -26,7 +26,7 @@ class ClangParser
/** Switches to another file within the translation unit started /** Switches to another file within the translation unit started
* with start(). * with start().
* @param[in] The name of the file to switch to. * @param[in] fileName The name of the file to switch to.
*/ */
void switchToFile(const char *fileName); void switchToFile(const char *fileName);
......
...@@ -76,7 +76,6 @@ class ClassDef : public Definition ...@@ -76,7 +76,6 @@ class ClassDef : public Definition
* \param startColumn column number where the definition of this compound * \param startColumn column number where the definition of this compound
* starts. * starts.
* \param name the name of this compound (including scope) * \param name the name of this compound (including scope)
* \param symId unique Id for this symbol
* \param ct the kind of Compound * \param ct the kind of Compound
* \param ref the tag file from which this compound is extracted * \param ref the tag file from which this compound is extracted
* or 0 if the compound doesn't come from a tag file * or 0 if the compound doesn't come from a tag file
......
...@@ -489,6 +489,7 @@ void MemberList::writePlainDeclarations(OutputList &ol, ...@@ -489,6 +489,7 @@ void MemberList::writePlainDeclarations(OutputList &ol,
* @param inheritedFrom if not 0, the list is shown inside the * @param inheritedFrom if not 0, the list is shown inside the
* given class as inherited members, parameter cd points to the * given class as inherited members, parameter cd points to the
* class containing the members. * class containing the members.
* @param lt Type of list that is inherited from.
*/ */
void MemberList::writeDeclarations(OutputList &ol, void MemberList::writeDeclarations(OutputList &ol,
ClassDef *cd,NamespaceDef *nd,FileDef *fd,GroupDef *gd, ClassDef *cd,NamespaceDef *nd,FileDef *fd,GroupDef *gd,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment