Commit 280cbcb2 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msxml3: Fix the spelling of some comments.

parent 8ecd0379
......@@ -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;
......
......@@ -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;
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment