ole32/tests: Fix spelling errors in a couple of comments.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2016-04-23 07:46:33 +02:00 committed by Alexandre Julliard
parent 7035236fa9
commit 147d8231e4

View file

@ -2218,7 +2218,7 @@ static void test_OleInitialize_InitCounting(void)
IUnknown *pUnk;
REFCLSID rclsid = &CLSID_InternetZoneManager;
/* 1. OleInitialize fails but OleUnintialize is still called: apartment stays inited */
/* 1. OleInitialize fails but OleUninitialize is still called: apartment stays initialized */
hr = pCoInitializeEx(NULL, COINIT_MULTITHREADED);
ok(hr == S_OK, "CoInitializeEx(COINIT_MULTITHREADED) failed with error 0x%08x\n", hr);
@ -2233,7 +2233,7 @@ static void test_OleInitialize_InitCounting(void)
CoUninitialize();
/* 2. Extra multiple OleUninitialize: apartment stays inited until CoUnitialize */
/* 2. Extra multiple OleUninitialize: apartment stays initialized until CoUninitialize */
hr = CoInitialize(NULL);
ok(hr == S_OK, "CoInitialize() failed with error 0x%08x\n", hr);