msxml3: Fix the spelling of some comments.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-12-12 11:24:16 +01:00 committed by Alexandre Julliard
parent 8ecd037962
commit 280cbcb28a
3 changed files with 4 additions and 4 deletions

View File

@ -432,7 +432,7 @@ int xmlnode_get_inst_cnt(xmlnode *node)
}
/* _private field holds a number of COM instances spawned from this libxml2 node
* most significant bits are used to store information about ignorrable whitespace nodes */
* most significant bits are used to store information about ignorable whitespace nodes */
void xmlnode_add_ref(xmlNodePtr node)
{
if (node->type == XML_DOCUMENT_NODE) return;

View File

@ -4865,7 +4865,7 @@ static void test_XPath(void)
EXPECT_HR(hr, S_OK);
expect_list_and_release(list, "E2.D1");
/* peform xpath tests */
/* perform xpath tests */
for ( ; xptest->query ; xptest++ )
{
char *str;

View File

@ -3172,7 +3172,7 @@ static void test_mxwriter_properties(void)
ok(hr == E_INVALIDARG, "got %08x\n", hr);
SysFreeString(str);
/* test case sensivity */
/* test case sensitivity */
hr = IMXWriter_put_encoding(writer, _bstr_("utf-8"));
EXPECT_HR(hr, S_OK);
str = (void*)0xdeadbeef;
@ -5639,7 +5639,7 @@ static void test_mxattr_localname(void)
hr = ISAXAttributes_getIndexFromName(saxattr, NULL, 0, NULL, 0, &index);
EXPECT_HR(hr, E_INVALIDARG);
/* add some ambiguos attribute names */
/* add some ambiguous attribute names */
hr = IMXAttributes_addAttribute(mxattr, _bstr_("uri"), _bstr_("localname"),
_bstr_("a:localname"), _bstr_(""), _bstr_("value"));
EXPECT_HR(hr, S_OK);