From bbcb711e03b2c71e31e51a637141506097e78262 Mon Sep 17 00:00:00 2001
From: Sebastien Gilles <sebastien.gilles@inria.fr>
Date: Fri, 26 Jul 2019 09:17:58 +0200
Subject: [PATCH] #1471 Work around a Doxygen issue on CI VM.

---
 Scripts/Tools/find_warning_in_doxygen_log.py | 5 +++--
 Sources/Utilities/Containers/Print.hpp       | 5 ++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Scripts/Tools/find_warning_in_doxygen_log.py b/Scripts/Tools/find_warning_in_doxygen_log.py
index f52f24f0f1..4e6c3d52c3 100644
--- a/Scripts/Tools/find_warning_in_doxygen_log.py
+++ b/Scripts/Tools/find_warning_in_doxygen_log.py
@@ -25,10 +25,11 @@ class FindWarningInDoxygenLog():
         self.__content = []
         
         ignore_return_list = ("warning: return type of", \
-                              "model_tutorial.md" # Doxygen tries unsuccessfully to interpret a Markdown link in 
+                              "model_tutorial.md", # Doxygen tries unsuccessfully to interpret a Markdown link in 
                                                     # README.md; I don't want to fix it as it would broke Gitlab
                                                     # markdown interpreter
-                                                    )
+                             "argument 'closer' of command" # See #1471 for this one - hopefully may be removed at some point
+                             )
         
         with open(log) as FILE_in:
     
diff --git a/Sources/Utilities/Containers/Print.hpp b/Sources/Utilities/Containers/Print.hpp
index b931790422..5ab24321a3 100644
--- a/Sources/Utilities/Containers/Print.hpp
+++ b/Sources/Utilities/Containers/Print.hpp
@@ -127,7 +127,6 @@ namespace MoReFEM
         };
 
 
-
         /*!
          * \brief Print the content of a tuple or a pair.
          *
@@ -139,8 +138,8 @@ namespace MoReFEM
          * define operator<<.
          * \param[in] tuple Tuple which content is  displayed.
          * \param[in] separator Separator between two entries of the tuple.
-         * \param[in] opener Prefix ued while displaying the tuple.
-         * \param[in] closer Suffix ued while displaying the tuple.
+         * \param[in] opener Prefix used while displaying the tuple.
+         * \param[in] closer Suffix used while displaying the tuple.
          */
         template
         <
-- 
GitLab