Francois Gouget : msvcrt: Fix a couple of spelling errors in comments.

Alexandre Julliard julliard at winehq.org
Mon May 18 15:00:13 CDT 2020


Module: wine
Branch: master
Commit: 10bfa512df7e8fbcdf8d4e2e2f205dd9c72076ce
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=10bfa512df7e8fbcdf8d4e2e2f205dd9c72076ce

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat May 16 12:18:21 2020 +0200

msvcrt: Fix a couple of spelling errors in comments.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 407f819884..7baf8eee8e 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;




More information about the wine-cvs mailing list