Fix typos in comments.

diff --git a/dlls/dplayx/dplay.c b/dlls/dplayx/dplay.c
index 66516b9..b8bf932 100644
--- a/dlls/dplayx/dplay.c
+++ b/dlls/dplayx/dplay.c
@@ -3551,10 +3551,10 @@
       dpName.u2.lpszLongNameA  = NULL;
 
       /* Create the compound address for the service provider. 
-         NOTE: This is a gruesome architectural scar right now. DP uses DPL and DPL uses DP
-               nast stuff. This may be why the native dll just gets around this little bit by
-               allocating an 80 byte buffer which isn't even a filled with a valid compound 
-               address. Oh well. Creating a proper compound address is the way to go anyways 
+         NOTE: This is a gruesome architectural scar right now. DP uses DPL and DPL uses DP,
+               nasty stuff. This may be why the native dll just gets around this little bit by
+               allocating an 80 byte buffer which isn't even filled with a valid compound 
+               address. Oh well. Creating a proper compound address is the way to go anyway... 
                despite this method taking slightly more heap space and realtime :) */
       dpCompoundAddress.dwDataSize   = sizeof( GUID );
       memcpy( &dpCompoundAddress.guidDataType, &DPAID_ServiceProvider, 
@@ -3656,10 +3656,10 @@
       dpName.u2.lpszLongNameA  = NULL;
 
       /* Create the compound address for the service provider. 
-         NOTE: This is a gruesome architectural scar right now. DP uses DPL and DPL uses DP
-               nast stuff. This may be why the native dll just gets around this little bit by
-               allocating an 80 byte buffer which isn't even a filled with a valid compound 
-               address. Oh well. Creating a proper compound address is the way to go anyways 
+         NOTE: This is a gruesome architectural scar right now. DP uses DPL and DPL uses DP,
+               nasty stuff. This may be why the native dll just gets around this little bit by
+               allocating an 80 byte buffer which isn't even filled with a valid compound 
+               address. Oh well. Creating a proper compound address is the way to go anyway... 
                despite this method taking slightly more heap space and realtime :) */
       dpCompoundAddress.guidDataType = DPAID_LobbyProvider;
       dpCompoundAddress.dwDataSize   = sizeof( GUID );
diff --git a/dlls/ole32/storage.c b/dlls/ole32/storage.c
index 2098265..6f75a99 100644
--- a/dlls/ole32/storage.c
+++ b/dlls/ole32/storage.c
@@ -1582,7 +1582,7 @@
 	}
 	lpstg = MapSL((SEGPTR)*ppstgOpen);
 	lpstg->hf = hf;
-	/* FIXME: check for existance before overwriting? */
+	/* FIXME: check for existence before overwriting? */
 	if (!STORAGE_init_storage(hf)) {
 		CloseHandle(hf);
 		return E_FAIL;
diff --git a/dlls/shell32/shv_bg_cmenu.c b/dlls/shell32/shv_bg_cmenu.c
index de52ddf..de20c86 100644
--- a/dlls/shell32/shv_bg_cmenu.c
+++ b/dlls/shell32/shv_bg_cmenu.c
@@ -363,7 +363,7 @@
 
 	TRACE("(%p)->(idcom=%x flags=%x %p name=%p len=%x)\n",This, idCommand, uFlags, lpReserved, lpszName, uMaxNameLen);
 
-	/* test the existance of the menu items, the file dialog enables 
+	/* test the existence of the menu items, the file dialog enables 
 	   the buttons according to this */
 	if (uFlags == GCS_VALIDATEA)
 	{
diff --git a/libtest/vartest.c b/libtest/vartest.c
index 0df62bd..f32e687 100644
--- a/libtest/vartest.c
+++ b/libtest/vartest.c
@@ -965,8 +965,8 @@
 	{
 		/* Trying to use variants that are set to be BSTR but
 		 * do not contain a valid pointer makes the program crash
-		 * in Windows so we will skip those.  We do not need them
-		 * anyways to illustrate the behavior.
+		 * in Windows so we will skip those. We do not need them
+		 * anyway to illustrate the behavior.
 		 */
 		if( i ==  VT_BSTR )
 			i = 77;