From 3d0589ae7deef645d60882bedd4897693e967e58 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 10 Mar 2001 19:15:49 +0000 Subject: [PATCH] Fixed spelling/typos in comments. --- controls/combo.c | 2 +- dlls/winmm/joystick/joystick.c | 2 +- dlls/winmm/mmio.c | 2 +- loader/loadorder.c | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/controls/combo.c b/controls/combo.c index dbc0f9e582..496a191367 100644 --- a/controls/combo.c +++ b/controls/combo.c @@ -174,7 +174,7 @@ static LRESULT COMBO_NCDestroy( LPHEADCOMBO lphc ) * This method will calculate the height of the text area of the * combobox. * The height of the text area is set in two ways. - * It can be set explicitely through a combobox message or through a + * It can be set explicitly through a combobox message or through a * WM_MEASUREITEM callback. * If this is not the case, the height is set to 13 dialog units. * This height was determined through experimentation. diff --git a/dlls/winmm/joystick/joystick.c b/dlls/winmm/joystick/joystick.c index fe48410dde..e25c30f7d1 100644 --- a/dlls/winmm/joystick/joystick.c +++ b/dlls/winmm/joystick/joystick.c @@ -161,7 +161,7 @@ static LONG JSTCK_GetDevCaps(DWORD dwDevID, LPJOYCAPSA lpCaps, DWORD dwSize) lpCaps->wZmax = (nrOfAxes >= 3) ? 0xFFFF : 0; lpCaps->wNumButtons = nrOfButtons; if (dwSize == sizeof(JOYCAPSA)) { - /* since we supose ntOfAxes <= 6 in the following code, do it explicitely */ + /* since we suppose ntOfAxes <= 6 in the following code, do it explicitly */ if (nrOfAxes > 6) nrOfAxes = 6; /* complete 95 structure */ lpCaps->wRmin = 0; diff --git a/dlls/winmm/mmio.c b/dlls/winmm/mmio.c index 87eada8dc0..e92cea3572 100644 --- a/dlls/winmm/mmio.c +++ b/dlls/winmm/mmio.c @@ -530,7 +530,7 @@ static FOURCC MMIO_ParseExt(LPCSTR szFileName) WARN("Extension length > 4\n"); lstrcpynA(ext,extStart + 1,min(extEnd-extStart,5)); TRACE("Got extension: %s\n", debugstr_a(ext)); - /* FOURCC codes identifying file-extentions must be uppercase */ + /* FOURCC codes identifying file-extensions must be uppercase */ ret = mmioStringToFOURCCA(ext, MMIO_TOUPPER); } } diff --git a/loader/loadorder.c b/loader/loadorder.c index c03f128873..1c5de35db1 100644 --- a/loader/loadorder.c +++ b/loader/loadorder.c @@ -409,7 +409,7 @@ BOOL MODULE_InitLoadOrder(void) ); } - /* Read the explicitely defined orders for specific modules as an entire section */ + /* Read the explicitly defined orders for specific modules as an entire section */ idx = 0; while (PROFILE_EnumWineIniString( "DllOverrides", idx++, key, sizeof(key), buffer, sizeof(buffer))) @@ -419,15 +419,15 @@ BOOL MODULE_InitLoadOrder(void) return FALSE; } - /* Add the commandline overrides to the pool */ + /* Add the command line overrides to the pool */ if(!ParseCommandlineOverrides()) { MESSAGE( "Syntax: -dll name[,name[,...]]={native|so|builtin}[,{n|s|b}[,...]][+...]\n" " - 'name' is the name of any dll without extension\n" " - the order of loading (native, so and builtin) can be abbreviated\n" " with the first letter\n" - " - different loadorders for different dlls can be specified by seperating the\n" - " commandline entries with a '+'\n" + " - different loadorders for different dlls can be specified by separating the\n" + " command line entries with a '+'\n" " Example:\n" " -dll comdlg32,commdlg=n+shell,shell32=b\n" );