Module: wine
Branch: master
Commit: 72a7d945860e2aff861a0f16c19046c816c6d255
URL: https://source.winehq.org/git/wine.git/?a=commit;h=72a7d945860e2aff861a0f16…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Tue Dec 10 09:23:50 2019 +0100
jscript: Fix the spelling of a couple of comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Jacek Caban <jacek(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/jscript/jsutils.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/jscript/jsutils.c b/dlls/jscript/jsutils.c
index a36c9c1e5b..97d069aff7 100644
--- a/dlls/jscript/jsutils.c
+++ b/dlls/jscript/jsutils.c
@@ -672,13 +672,13 @@ static INT32 double_to_int32(double number)
* after rounding; if the exponent is > 83 then no bits of precision can be
* left in the low 32-bit range of the result (IEEE-754 doubles have 52 bits
* of fractional precision).
- * Note this case handles 0, -0, and all infinte, NaN, & denormal value. */
+ * Note this case handles 0, -0, and all infinite, NaN & denormal values. */
if(exp < 0 || exp > 83)
return 0;
/* Select the appropriate 32-bits from the floating point mantissa. If the
* exponent is 52 then the bits we need to select are already aligned to the
- * lowest bits of the 64-bit integer representation of tghe number, no need
+ * lowest bits of the 64-bit integer representation of the number, no need
* to shift. If the exponent is greater than 52 we need to shift the value
* left by (exp - 52), if the value is less than 52 we need to shift right
* accordingly. */