From: Wolfgang Bangerth Date: Mon, 12 Mar 2018 03:03:25 +0000 (-0600) Subject: Fix doxygen markup. X-Git-Tag: v9.0.0-rc1~335^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6038%2Fhead;p=dealii.git Fix doxygen markup. --- diff --git a/include/deal.II/base/utilities.h b/include/deal.II/base/utilities.h index fd1399f83c..3f4dc6dad4 100644 --- a/include/deal.II/base/utilities.h +++ b/include/deal.II/base/utilities.h @@ -461,7 +461,7 @@ namespace Utilities * However, the converse does not: * @code * array = Utilities::unpack(buffer); - * @code + * @endcode * This is because C++ does not allow functions to return arrays. * Consequently, there is a separate unpack() function for arrays, see * below. @@ -489,12 +489,12 @@ namespace Utilities * However, the converse does not: * @code * array = Utilities::unpack(buffer); - * @code + * @endcode * This is because C++ does not allow functions to return arrays. * The current function therefore allows to write * @code * Utilities::unpack(buffer, array); - * @code + * @endcode * Note that unlike the other unpack() function, it is not necessary * to explicitly specify the template arguments since they can be * deduced from the second argument.