summaryrefslogtreecommitdiffstats
path: root/l10ntools
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/inc/xmlparse.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx
index a9d2893d68b3..039b7f8ac387 100644
--- a/l10ntools/inc/xmlparse.hxx
+++ b/l10ntools/inc/xmlparse.hxx
@@ -248,7 +248,7 @@ public:
/// create a data node
XMLData(
const OString &rData, // the initial data
- XMLParentNode *pParent // the parent node of this data, typically a element node
+ XMLParentNode *pParent // the parent node of this data, typically an element node
)
: XMLChildNode( pParent ), m_sData( rData ) {}
@@ -274,7 +274,7 @@ public:
/// create a comment node
XMLComment(
const OString &rComment, // the comment
- XMLParentNode *pParent // the parent node of this comemnt, typically a element node
+ XMLParentNode *pParent // the parent node of this comemnt, typically an element node
)
: XMLChildNode( pParent ), m_sComment( rComment ) {}
@@ -297,7 +297,7 @@ public:
/// create a comment node
XMLDefault(
const OString &rDefault, // the comment
- XMLParentNode *pParent // the parent node of this comemnt, typically a element node
+ XMLParentNode *pParent // the parent node of this comemnt, typically an element node
)
: XMLChildNode( pParent ), m_sDefault( rDefault ) {}