[PATCH] msvcrt: Fix a couple of spelling errors in comments.

Francois Gouget fgouget at free.fr
Sat May 16 05:18:21 CDT 2020


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/msvcrt/string.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcrt/string.c b/dlls/msvcrt/string.c
index 407f819884d..7baf8eee8e8 100644
--- a/dlls/msvcrt/string.c
+++ b/dlls/msvcrt/string.c
@@ -864,7 +864,7 @@ double parse_double(MSVCRT_wchar_t (*get)(void *ctx), void (*unget)(void *ctx),
         if(b.data[BNUM_IDX(b.b)]) break;
     }
 
-    /* move decimal point to limb boundry */
+    /* move decimal point to limb boundary */
     if(limb_digits==dp && b.b==b.e-1)
         return make_double(sign, 0, b.data[BNUM_IDX(b.e-1)], ROUND_ZERO, err);
     off = (dp - limb_digits) % LIMB_DIGITS;
@@ -893,7 +893,7 @@ double parse_double(MSVCRT_wchar_t (*get)(void *ctx), void (*unget)(void *ctx),
     }
 
     /* Check if fractional part is non-zero */
-    /* Caution: it's only correct because bnum_to_mant returns more then 53 bits */
+    /* Caution: it's only correct because bnum_to_mant returns more than 53 bits */
     for(i=b.e-3; i>=b.b; i--) {
         if (!b.data[BNUM_IDX(b.b)]) continue;
         round = ROUND_DOWN;
-- 
2.20.1



More information about the wine-devel mailing list