diff --git a/include/Nazara/Math/Algorithm.inl b/include/Nazara/Math/Algorithm.inl index 195251a19..b393d38e6 100644 --- a/include/Nazara/Math/Algorithm.inl +++ b/include/Nazara/Math/Algorithm.inl @@ -81,7 +81,7 @@ namespace Nz { static_assert(sizeof(T) % sizeof(UInt32) == 0, "Assertion failed"); - // The algorithm for logarithm in base 2 only works with numbers greather than 32 bits + // The algorithm for logarithm in base 2 only works with numbers greater than 32 bits // This code subdivides the biggest number into 32 bits ones for (int i = sizeof(T)-sizeof(UInt32); i >= 0; i -= sizeof(UInt32)) {