From b990617a952654e8e6350ce6318953cf9ee25fdd Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 2 Nov 2010 13:03:16 +0100 Subject: [PATCH] Assorted spelling fixes. --- dlls/gameux/gameexplorer.c | 6 +++--- dlls/gameux/gamestatistics.c | 2 +- dlls/gameux/gameux_private.h | 2 +- dlls/gameux/tests/gameexplorer.c | 4 ++-- dlls/kernel32/tests/path.c | 2 +- dlls/msxml3/tests/schema.c | 2 +- dlls/oleaut32/olepropframe.c | 2 +- dlls/urlmon/tests/uri.c | 2 +- dlls/usp10/tests/usp10.c | 4 ++-- dlls/wined3d/directx.c | 6 +++--- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/dlls/gameux/gameexplorer.c b/dlls/gameux/gameexplorer.c index 1715ad9932d..bddc131f511 100644 --- a/dlls/gameux/gameexplorer.c +++ b/dlls/gameux/gameexplorer.c @@ -381,7 +381,7 @@ static HRESULT GAMEUX_ParseGameDefinition( /******************************************************************************* * GAMEUX_ParseGDFBinary * - * Helper funtion, loads given binary and parses embed GDF if there's any. + * Helper function, loads given binary and parses embed GDF if there's any. * * Parameters: * GameData [I/O] Structure with game's data. Content of field @@ -534,7 +534,7 @@ HRESULT WINAPI GAMEUX_RegisterGame(LPCWSTR sGDFBinaryPath, hr = GAMEUX_WriteRegistryRecord(&GameData); GAMEUX_uninitGameData(&GameData); - TRACE("returing 0x%08x\n", hr); + TRACE("returning 0x%08x\n", hr); return hr; } /******************************************************************************* @@ -574,7 +574,7 @@ static HRESULT GAMEUX_IsGameKeyExist(GAME_INSTALL_SCOPE installScope, RegCloseKey(hKey); else { - /* if key does not exist or other error occured, do not return the path */ + /* if the key does not exist or another error occurred, do not return the path */ HeapFree(GetProcessHeap(), 0, *lpRegistryPath); *lpRegistryPath = NULL; } diff --git a/dlls/gameux/gamestatistics.c b/dlls/gameux/gamestatistics.c index 0cce0596f30..bedcfd2ac2b 100644 --- a/dlls/gameux/gamestatistics.c +++ b/dlls/gameux/gamestatistics.c @@ -696,7 +696,7 @@ HRESULT create_IGameStatistics(GameStatisticsImpl** ppStats) (*ppStats)->lpVtbl = &GameStatisticsImplVtbl; (*ppStats)->ref = 1; - TRACE("returing coclass: %p\n", *ppStats); + TRACE("returning coclass: %p\n", *ppStats); return S_OK; } diff --git a/dlls/gameux/gameux_private.h b/dlls/gameux/gameux_private.h index 86532e25b14..c8923b5da6b 100644 --- a/dlls/gameux/gameux_private.h +++ b/dlls/gameux/gameux_private.h @@ -89,7 +89,7 @@ HRESULT WINAPI GAMEUX_RegisterGame(LPCWSTR sGDFBinaryPath, /******************************************************************************* * GAMEUX_FindGameInstanceId * - * Helper funtion. Searches for instance identifier of given game in given + * Helper function. Searches for instance identifier of given game in given * installation scope. Implemented in gameexplorer.c * * Parameters: diff --git a/dlls/gameux/tests/gameexplorer.c b/dlls/gameux/tests/gameexplorer.c index ba22256dc67..e0781723b72 100644 --- a/dlls/gameux/tests/gameexplorer.c +++ b/dlls/gameux/tests/gameexplorer.c @@ -414,7 +414,7 @@ static HRESULT _LoadRegistryString(HKEY hRootKey, /******************************************************************************* * _findGameInstanceId * - * Helper funtion. Searches for instance identifier of given game in given + * Helper function. Searches for instance identifier of given game in given * installation scope. * * Parameters: @@ -638,7 +638,7 @@ static void test_install_uninstall_game(void) hr = IGameExplorer2_InstallGame(ge2, sExeName, sExePath, GIS_CURRENT_USER); ok(SUCCEEDED(hr), "IGameExplorer2::InstallGame failed (error 0x%08x)\n", hr); - /* in comparision to AddGame, InstallGame does not return instance ID, + /* in comparison to AddGame, InstallGame does not return instance ID, * so we need to find it manually */ _findGameInstanceId(__LINE__, sExeName, GIS_CURRENT_USER, &guid); diff --git a/dlls/kernel32/tests/path.c b/dlls/kernel32/tests/path.c index 3d3276784ed..55d62aa98e2 100644 --- a/dlls/kernel32/tests/path.c +++ b/dlls/kernel32/tests/path.c @@ -361,7 +361,7 @@ static void test_InitPathA(CHAR *newdir, CHAR *curDrive, CHAR *otherDrive) } for(unique=0;unique<3;unique++) { - /* Non-existent path */ + /* Nonexistent path */ sprintf(invalid_dir, "%s\%s",tmppath,"non_existent_dir_1jwj3y32nb3"); SetLastError(0xdeadbeef); ok(!GetTempFileNameA(invalid_dir,"tfn",unique,newdir),"GetTempFileNameA should have failed\n"); diff --git a/dlls/msxml3/tests/schema.c b/dlls/msxml3/tests/schema.c index b457f0eedad..189451e8e5d 100644 --- a/dlls/msxml3/tests/schema.c +++ b/dlls/msxml3/tests/schema.c @@ -476,7 +476,7 @@ static void test_length(void) ole_expect(IXMLDOMSchemaCollection_get_length(cache, NULL), E_POINTER); - /* MSDN lies; removing a non-existant entry produces no error */ + /* MSDN lies; removing a nonexistent entry produces no error */ ole_check(IXMLDOMSchemaCollection_remove(cache, NULL)); ole_check(IXMLDOMSchemaCollection_remove(cache, _bstr_(xdr_schema1_uri))); diff --git a/dlls/oleaut32/olepropframe.c b/dlls/oleaut32/olepropframe.c index 4772ba7b6e7..011fde1f502 100644 --- a/dlls/oleaut32/olepropframe.c +++ b/dlls/oleaut32/olepropframe.c @@ -2,7 +2,7 @@ * Copyright 1999 Corel Corporation * Sean Langley * Copyright 2010 Geoffrey Hausheer - * Copyright 2010 Piotr Caban for Codeweavers + * Copyright 2010 Piotr Caban for CodeWeavers * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/dlls/urlmon/tests/uri.c b/dlls/urlmon/tests/uri.c index eb5a3f7864b..cb1ad6ff5dc 100644 --- a/dlls/urlmon/tests/uri.c +++ b/dlls/urlmon/tests/uri.c @@ -3918,7 +3918,7 @@ static const uri_properties uri_tests[] = { {URLZONE_INVALID,E_NOTIMPL,FALSE} } }, - /* Dot segements aren't removed. */ + /* Dot segments aren't removed. */ { "file://c:\\dir\\../..\\./index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE, Uri_HAS_ABSOLUTE_URI|Uri_HAS_DISPLAY_URI|Uri_HAS_EXTENSION|Uri_HAS_PATH |Uri_HAS_PATH_AND_QUERY|Uri_HAS_RAW_URI|Uri_HAS_SCHEME_NAME|Uri_HAS_HOST_TYPE diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index 56385c64355..06e9289c7b2 100644 --- a/dlls/usp10/tests/usp10.c +++ b/dlls/usp10/tests/usp10.c @@ -1421,7 +1421,7 @@ static void test_ScriptStringXtoCP_CPtoX(HDC hdc) } } - /* Check beyond the leading boundry of the whole string */ + /* Check beyond the leading boundary of the whole string */ if (rtl[0]) { /* having a leading rtl character seems to confuse usp */ @@ -1445,7 +1445,7 @@ static void test_ScriptStringXtoCP_CPtoX(HDC hdc) iTrailing); } - /* Check beyond the end boundry of the whole string */ + /* Check beyond the end boundary of the whole string */ if (rtl[String_len-1]) hr = ScriptStringCPtoX(ssa, String_len-1, FALSE, &X); else diff --git a/dlls/wined3d/directx.c b/dlls/wined3d/directx.c index 326c64bdbbd..b25e399b94a 100644 --- a/dlls/wined3d/directx.c +++ b/dlls/wined3d/directx.c @@ -997,9 +997,9 @@ static const struct driver_version_information driver_version_table[] = { /* ATI * - Radeon HD2x00 (R600) and up supported by current drivers. - * - Radeon 9500 (R300) - X1*00 (R5xx) supported upto Catalyst 9.3 (Linux) and 10.2 (XP/Vista/Win7) - * - Radeon 7xxx (R100) - 9250 (RV250) supported upto Catalyst 6.11 (XP) - * - Rage 128 supported upto XP, latest official build 6.13.3279 dated October 2001 */ + * - Radeon 9500 (R300) - X1*00 (R5xx) supported up to Catalyst 9.3 (Linux) and 10.2 (XP/Vista/Win7) + * - Radeon 7xxx (R100) - 9250 (RV250) supported up to Catalyst 6.11 (XP) + * - Rage 128 supported up to XP, latest official build 6.13.3279 dated October 2001 */ {DRIVER_ATI_RAGE_128PRO, DRIVER_MODEL_NT5X, "ati2dvaa.dll", 13, 3279, 0}, {DRIVER_ATI_R100, DRIVER_MODEL_NT5X, "ati2dvag.dll", 14, 10, 6614}, {DRIVER_ATI_R300, DRIVER_MODEL_NT5X, "ati2dvag.dll", 14, 10, 6764}, -- 2.11.4.GIT