From 4b6d7d2e4769b582d201e06a2ce43ed2a46aa32f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Fri, 5 Jan 2018 15:39:56 +0100 Subject: [PATCH] Math/Algorithm: Fix typo --- include/Nazara/Math/Algorithm.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {