From 4bbbe44c1c5a3bf2b37b9016d11438d609411f83 Mon Sep 17 00:00:00 2001
From: Nina Dzugasova <dzugasova.nina@gmail.com>
Date: Mon, 26 Nov 2018 12:23:41 +0100
Subject: [PATCH] Fixed Logger documentation.

---
 src/TNL/Logger.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/TNL/Logger.h b/src/TNL/Logger.h
index d73594d2cf..7a6472bfae 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;
 };
 
-- 
GitLab