mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Fix typos
Typos found with codespell.
This commit is contained in:
parent
1e1b52be2d
commit
5a8f5f1d40
3 changed files with 4 additions and 4 deletions
|
@ -422,7 +422,7 @@ if(WIN32 AND NOT MINGW)
|
|||
# on Windows by resorting to filename libexpat.dll since Expat 1.95.3.
|
||||
# Everything but MSVC is already adding prefix "lib", automatically.
|
||||
# NOTE: "set_property(TARGET expat PROPERTY PREFIX lib)" would only affect *.dll
|
||||
# files but not *.lib files, so we have to rely on propert OUTPUT_NAME, instead.
|
||||
# files but not *.lib files, so we have to rely on property OUTPUT_NAME, instead.
|
||||
# Property CMAKE_*_POSTFIX still applies.
|
||||
set_property(TARGET expat PROPERTY OUTPUT_NAME libexpat)
|
||||
endif()
|
||||
|
|
|
@ -4092,7 +4092,7 @@ initializeEncoding(XML_Parser parser) {
|
|||
const char *s;
|
||||
#ifdef XML_UNICODE
|
||||
char encodingBuf[128];
|
||||
/* See comments abount `protoclEncodingName` in parserInit() */
|
||||
/* See comments about `protocolEncodingName` in parserInit() */
|
||||
if (! parser->m_protocolEncodingName)
|
||||
s = NULL;
|
||||
else {
|
||||
|
|
|
@ -11286,7 +11286,7 @@ START_TEST(test_accounting_precision) {
|
|||
{"<p:e xmlns:p=\"https://domain.invalid/\" />", NULL, NULL, 0,
|
||||
filled_later},
|
||||
{"<e k=\"&'><"\" />", NULL, NULL,
|
||||
sizeof(XML_Char) * 5 /* number of predefined entites */, filled_later},
|
||||
sizeof(XML_Char) * 5 /* number of predefined entities */, filled_later},
|
||||
{"<e1 xmlns='https://example.org/'>\n"
|
||||
" <e2 xmlns=''/>\n"
|
||||
"</e1>",
|
||||
|
@ -11296,7 +11296,7 @@ START_TEST(test_accounting_precision) {
|
|||
{"<e>text</e>", NULL, NULL, 0, filled_later},
|
||||
{"<e1><e2>text1<e3/>text2</e2></e1>", NULL, NULL, 0, filled_later},
|
||||
{"<e>&'><"</e>", NULL, NULL,
|
||||
sizeof(XML_Char) * 5 /* number of predefined entites */, filled_later},
|
||||
sizeof(XML_Char) * 5 /* number of predefined entities */, filled_later},
|
||||
{"<e>A)</e>", NULL, NULL, 0, filled_later},
|
||||
|
||||
/* Prolog */
|
||||
|
|
Loading…
Add table
Reference in a new issue