diff --git a/src/plugins/cpptools/cppmodelmanager.cpp b/src/plugins/cpptools/cppmodelmanager.cpp
index d6c718af65c93a075571b7a141fb28d3a72f800c..43143959167a29ff37cbbcda97350762bd0c5b01 100644
--- a/src/plugins/cpptools/cppmodelmanager.cpp
+++ b/src/plugins/cpptools/cppmodelmanager.cpp
@@ -198,7 +198,7 @@ void CppModelManager::updateModifiedSourceFiles()
            for each project and all the related CppCodeModelPart instances.
 
     It also takes care of updating the code models when C++ files are
-    modified within Qt Creator.
+    modified within \QC.
 */
 
 QMutex CppModelManager::m_modelManagerMutex;
diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter.cpp b/src/plugins/cpptools/cpppointerdeclarationformatter.cpp
index edcb105028966d20f706745a86ec2970c0acd850..73cab694ce8220dd486255750eb276e95ca0fd7c 100644
--- a/src/plugins/cpptools/cpppointerdeclarationformatter.cpp
+++ b/src/plugins/cpptools/cpppointerdeclarationformatter.cpp
@@ -51,7 +51,7 @@
 using namespace CppTools;
 
 /*!
-   \brief Skip not type relevant specifiers and return the index of the
+   Skips specifiers that are not type relevant and returns the index of the
           first specifier token which is not followed by __attribute__
           ((T___ATTRIBUTE__)).
 
@@ -60,17 +60,20 @@ using namespace CppTools;
 
    Consider these cases:
 
-        static char *s = 0;
-        typedef char *s cp;
-        __attribute__((visibility("default"))) char *f();
+    \list
+        \li \c {static char *s = 0;}
+        \li \c {typedef char *s cp;}
+        \li \c {__attribute__((visibility("default"))) char *f();}
+    \endlist
 
-   For all cases we want to skip all the not type relevant specifer
+   For all these cases we want to skip all the specifiers that are not type
+   relevant
    (since these are not part of the type and thus are not rewritten).
 
-   \param list The specifier list to iterate
-   \param translationUnit The TranslationUnit
-   \param endToken Do not check further than this token
-   \param found Output parameter, must not be 0.
+   \a list is the specifier list to iterate and \a translationUnit is the
+   translation unit.
+   \a endToken is the last token to check.
+   \a found is an output parameter that must not be 0.
  */
 static unsigned firstTypeSpecifierWithoutFollowingAttribute(
     SpecifierListAST *list, TranslationUnit *translationUnit, unsigned endToken, bool *found)
@@ -363,11 +366,8 @@ void PointerDeclarationFormatter::processIfWhileForStatement(ExpressionAST *expr
 }
 
 /*!
-   \brief Do some further checks and rewrite the symbol's type and
-          name into the given range
-
-   \param symbol the symbol to be rewritten
-   \param range the substitution range in the file
+    Performs some further checks and rewrites the type and name of \a symbol
+    into the substitution range in the file specified by \a tokenRange.
  */
 void PointerDeclarationFormatter::checkAndRewrite(DeclaratorAST *declarator,
                                                   Symbol *symbol,
diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter.h b/src/plugins/cpptools/cpppointerdeclarationformatter.h
index 621c6d3971823e974fa3881963584c3e569e7f7d..9eadd6ed26528159ebf3cb3263cf98120f5b8d43 100644
--- a/src/plugins/cpptools/cpppointerdeclarationformatter.h
+++ b/src/plugins/cpptools/cpppointerdeclarationformatter.h
@@ -63,10 +63,10 @@ public:
     /*!
         \enum PointerDeclarationFormatter::CursorHandling
 
-        This simplifies the QuickFix implementation.
+        This enum type simplifies the QuickFix implementation.
 
           \value RespectCursor
-                 Consider the cursor position / selection of the CppRefactoringFile
+                 Consider the cursor position or selection of the CppRefactoringFile
                  for rejecting edit operation candidates for the resulting ChangeSet.
                  If there is a selection, the range of the edit operation candidate
                  should be inside the selection. If there is no selection, the cursor