summaryrefslogtreecommitdiff
path: root/src/core/bitmath_func.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/bitmath_func.cpp')
-rw-r--r--src/core/bitmath_func.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/bitmath_func.cpp b/src/core/bitmath_func.cpp
index 12937168a..af0200bcb 100644
--- a/src/core/bitmath_func.cpp
+++ b/src/core/bitmath_func.cpp
@@ -27,7 +27,7 @@ const uint8 _ffb_64[64] = {
* Search the first set bit in a 32 bit variable.
*
* This algorithm is a static implementation of a log
- * conguence search algorithm. It checks the first half
+ * congruence search algorithm. It checks the first half
* if there is a bit set search there further. And this
* way further. If no bit is set return 0.
*
@@ -55,7 +55,7 @@ uint8 FindFirstBit(uint32 x)
* Search the last set bit in a 64 bit variable.
*
* This algorithm is a static implementation of a log
- * conguence search algorithm. It checks the second half
+ * congruence search algorithm. It checks the second half
* if there is a bit set search there further. And this
* way further. If no bit is set return 0.
*