diff --git a/src/TNL/Logger.h b/src/TNL/Logger.h
index d73594d2cf512bf5f141e6990d1632dd8851613a..7a6472bfae4e80e180b3ceabb03e9168a91543cd 100644
--- a/src/TNL/Logger.h
+++ b/src/TNL/Logger.h
@@ -33,7 +33,7 @@ class Logger
    /// 
    /// The header usually contains title of the program.
    ///
-   /// \param title String containing the header title.
+   /// \param title A String containing the header title.
    void writeHeader( const String& title );
 
    /// \brief Creates separator used as a log structure.
@@ -78,8 +78,10 @@ class Logger
 
    protected:
 
+   /// \brief Integer defining the width of the log.
    int width;
 
+   /// \brief Output stream where the log will be printed out.
    std::ostream& stream;
 };