From 8947ef569f11762533ab25de5f33b25a7fe26c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Mon, 2 Jul 2012 12:55:28 +0200 Subject: [PATCH] Mark return values as \return rather than \ret. Needed for Doxygen compliance. --- opm/core/utility/StopWatch.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/core/utility/StopWatch.hpp b/opm/core/utility/StopWatch.hpp index ee996d40..ec631670 100644 --- a/opm/core/utility/StopWatch.hpp +++ b/opm/core/utility/StopWatch.hpp @@ -57,11 +57,11 @@ namespace Opm /// restarted by a call to start(). void stop(); - /// \ret the number of running seconds that have passed + /// \return the number of running seconds that have passed /// since last call to start(), secsSinceLast() or /// secsSinceStart() double secsSinceLast(); - /// \ret the number of running seconds that have passed + /// \return the number of running seconds that have passed /// since last call to start(). double secsSinceStart();