From ae07f156764c9a0e4974cc3941d86dc678c35213 Mon Sep 17 00:00:00 2001 From: Squareys Date: Sat, 10 Oct 2015 16:25:47 +0200 Subject: [PATCH] Math: Super minor formatting fix. Signed-off-by: Squareys --- src/Magnum/Math/Quaternion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Math/Quaternion.h b/src/Magnum/Math/Quaternion.h index b3617931b..c05e0993e 100644 --- a/src/Magnum/Math/Quaternion.h +++ b/src/Magnum/Math/Quaternion.h @@ -89,7 +89,7 @@ Expects that both quaternions are normalized. @f[ @f] @see @ref Quaternion::isNormalized(), @ref slerp(const Quaternion&, const Quaternion&, T), @ref lerp(const T&, const T&, U) - */ +*/ template inline Quaternion lerp(const Quaternion& normalizedA, const Quaternion& normalizedB, T t) { CORRADE_ASSERT(normalizedA.isNormalized() && normalizedB.isNormalized(), "Math::lerp(): quaternions must be normalized", {});