From 10863b85408b3e1dfd627fb6423905d9c02c0a3b Mon Sep 17 00:00:00 2001 From: Nina Dzugasova <dzugasova.nina@gmail.com> Date: Tue, 2 Oct 2018 16:11:31 +0200 Subject: [PATCH] Added comment to String constructor. --- src/TNL/String.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/TNL/String.h b/src/TNL/String.h index f5657a20ff..e8859c996b 100644 --- a/src/TNL/String.h +++ b/src/TNL/String.h @@ -41,10 +41,11 @@ public: //! Constructor from const char* String( const char* str ); - //! Constructor with char pointer - /*! @param prefix_cut_off says length of the prefix that is going to be omitted and - @param sufix_cut_off says the same about sufix. - */ + ////// + /// Constructor with char pointer + /// + /// @param prefix_cut_off says length of the prefix that is going to be omitted and + /// @param sufix_cut_off says the same about sufix. String( const char* c, int prefix_cut_off, int sufix_cut_off = 0 ); -- GitLab