Index: source/scale_common.cc |
diff --git a/source/scale_common.cc b/source/scale_common.cc |
index 3507aa4d9ff0cf006eba6f7ded4c124989318816..e9c4eff935cf46edcf877afffcce0b05585c3650 100644 |
--- a/source/scale_common.cc |
+++ b/source/scale_common.cc |
@@ -421,7 +421,7 @@ void ScaleColsUp2_16_C(uint16* dst_ptr, const uint16* src_ptr, |
#define BLENDER(a, b, f) (uint8)((int)(a) + \ |
((((int)((f)) * ((int)(b) - (int)(a))) + 0x8000) >> 16)) |
#else |
-// inteluses 7 bit math with rounding. |
+// Intel uses 7 bit math with rounding. |
#define BLENDER(a, b, f) (uint8)((int)(a) + \ |
(((int)((f) >> 9) * ((int)(b) - (int)(a)) + 0x40) >> 7)) |
#endif |