From 940ef90b10f2d441d8b0c451b59c022658776579 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <github@naumov.de>
Date: Sun, 20 Jan 2019 19:14:45 +0100
Subject: [PATCH] [MatL] Reformat comment. Fix \ogs_file_param.

Placement of \ogs_file_param was wrong after previos reformatting.
---
 MaterialLib/MPL/CreateProperty.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/MaterialLib/MPL/CreateProperty.cpp b/MaterialLib/MPL/CreateProperty.cpp
index 44b3258fce4..9113a8eb53f 100644
--- a/MaterialLib/MPL/CreateProperty.cpp
+++ b/MaterialLib/MPL/CreateProperty.cpp
@@ -33,12 +33,12 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty(
     //! \ogs_file_param{properties__property__type}
     auto const property_type = config.getConfigParameter<std::string>("type");
 
-    // If (and only if) the given property type is 'constant', a
-    // corresponding value is needed.
+    // If (and only if) the given property type is 'constant', a corresponding
+    // value is needed.
     if (property_type == "Constant")
     {
-        //! \ogs_file_param{properties__property__Constant__value}
         std::vector<double> const values =
+            //! \ogs_file_param{properties__property__Constant__value}
             config.getConfigParameter<std::vector<double>>("value");
 
         switch (values.size())
-- 
GitLab