From 675b6bbabcd6560914d5edebd23e0b119859975c Mon Sep 17 00:00:00 2001 From: MaEtUgR Date: Tue, 26 Jun 2018 15:04:05 +0200 Subject: [PATCH] mathlib: fix comment typo --- src/lib/mathlib/math/Functions.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/mathlib/math/Functions.hpp b/src/lib/mathlib/math/Functions.hpp index 57622e7def..2a8bc5d837 100644 --- a/src/lib/mathlib/math/Functions.hpp +++ b/src/lib/mathlib/math/Functions.hpp @@ -51,7 +51,7 @@ int sign(T val) return (T(0) < val) - (val < T(0)); } -// Type-safe signum function with zero treted as positive +// Type-safe signum function with zero treated as positive template int signNoZero(T val) {