mathlib: fix comment typo

This commit is contained in:
MaEtUgR
2018-06-26 15:04:05 +02:00
committed by ChristophTobler
parent 3b7d31de75
commit 675b6bbabc
+1 -1
View File
@@ -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<typename T>
int signNoZero(T val)
{