From fae73a10909f754f9da0a1580270cc95723aba40 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 17 Aug 2005 09:56:24 +0000 Subject: [PATCH] Assorted spelling fixes. --- dlls/kernel/tests/process.c | 2 +- dlls/msxml3/domdoc.c | 2 +- dlls/secur32/tests/main.c | 5 ++--- dlls/wined3d/drawprim.c | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dlls/kernel/tests/process.c b/dlls/kernel/tests/process.c index 0a22f1bb368..3052bd75762 100644 --- a/dlls/kernel/tests/process.c +++ b/dlls/kernel/tests/process.c @@ -415,7 +415,7 @@ static int strCmp(const char* s1, const char* s2, BOOL sensitive) ok(strCmp(result, expect, 0) == 0, "%s:%s expected '%s', got '%s'\n", sect, key, expect, result); \ } while (0) -/* using !expect insures that the test will fail if the sect/key isn't present +/* using !expect ensures that the test will fail if the sect/key isn't present * in result file */ #define okChildInt(sect, key, expect) \ diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index 2e840f280a7..f12ca7d8a34 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -655,7 +655,7 @@ static xmlDocPtr doparse( char *ptr, int len ) { #ifdef HAVE_XMLREADMEMORY /* - * use xmlReadMemory if possible so we can supress + * use xmlReadMemory if possible so we can suppress * writing errors to stderr */ return xmlReadMemory( ptr, len, NULL, NULL, diff --git a/dlls/secur32/tests/main.c b/dlls/secur32/tests/main.c index 2338531f66a..e9fe53abd47 100644 --- a/dlls/secur32/tests/main.c +++ b/dlls/secur32/tests/main.c @@ -307,15 +307,14 @@ static void testQuerySecurityPackageInfo(void) "Return value of FreeContextBuffer() shouldn't be %s\n", getSecStatusError(sec_status) ); - /* Test with non-existing package, test should fail */ + /* Test with a nonexistent package, test should fail */ lstrcpy(sec_pkg_name, "Winetest"); sec_status = QuerySecurityPackageInfo( sec_pkg_name, &pkg_info); ok( sec_status != SEC_E_OK, - "Return value of QuerySecurityPackageInfo() should not be %s for \ -a non-existant package\n", getSecStatusError(SEC_E_OK)); + "Return value of QuerySecurityPackageInfo() should not be %s for a nonexistent package\n", getSecStatusError(SEC_E_OK)); sec_status = FreeContextBuffer(&pkg_info); diff --git a/dlls/wined3d/drawprim.c b/dlls/wined3d/drawprim.c index 547b98e8e9f..6ce30d0c061 100644 --- a/dlls/wined3d/drawprim.c +++ b/dlls/wined3d/drawprim.c @@ -1585,7 +1585,7 @@ void inline drawPrimitiveUploadTextures(IWineD3DDeviceImpl* This) { * if there is a texture bound to that unit then.. * disable all textures types on that unit * enable and bind the texture that is bound to that unit. -* otherwise dissable all texture types on that unit. +* otherwise disable all texture types on that unit. **/ /* upload the textures */ for (i = 0; i< GL_LIMITS(textures); ++i) { -- 2.11.4.GIT