[libxml2] Fix a couple of typo in HTML parser error messages
- From: Daniel Veillard <veillard src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libxml2] Fix a couple of typo in HTML parser error messages
- Date: Mon, 2 Aug 2010 11:44:04 +0000 (UTC)
commit af58ee130fe9eec14a0b8c6f6f3cdf7e7ec37872
Author: Michael Day <mikeday yeslogic com>
Date: Mon Aug 2 13:43:28 2010 +0200
Fix a couple of typo in HTML parser error messages
HTMLparser.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/HTMLparser.c b/HTMLparser.c
index 224c65f..d51abe3 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -3275,7 +3275,7 @@ htmlParseCharRef(htmlParserCtxtPtr ctxt) {
val = val * 16 + (CUR - 'A') + 10;
else {
htmlParseErr(ctxt, XML_ERR_INVALID_HEX_CHARREF,
- "htmlParseCharRef: missing semicolumn\n",
+ "htmlParseCharRef: missing semicolon\n",
NULL, NULL);
break;
}
@@ -3290,7 +3290,7 @@ htmlParseCharRef(htmlParserCtxtPtr ctxt) {
val = val * 10 + (CUR - '0');
else {
htmlParseErr(ctxt, XML_ERR_INVALID_DEC_CHARREF,
- "htmlParseCharRef: missing semicolumn\n",
+ "htmlParseCharRef: missing semicolon\n",
NULL, NULL);
break;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]