aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xml/parser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xml/parser.cxx b/xml/parser.cxx
index db1a9d0..37f9f76 100644
--- a/xml/parser.cxx
+++ b/xml/parser.cxx
@@ -151,11 +151,11 @@ namespace xml
switch (content ())
{
case content_type::empty:
- throw parsing (*this, "character in empty content");
+ throw parsing (*this, "characters in empty content");
case content_type::simple:
throw parsing (*this, "element in simple content");
case content_type::complex:
- throw parsing (*this, "character in complex content");
+ throw parsing (*this, "characters in complex content");
default:
assert (false);
}