summaryrefslogtreecommitdiff
path: root/zen/xml_io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/xml_io.cpp')
-rwxr-xr-xzen/xml_io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/xml_io.cpp b/zen/xml_io.cpp
index a618f27c..dd116ef0 100755
--- a/zen/xml_io.cpp
+++ b/zen/xml_io.cpp
@@ -57,7 +57,7 @@ void zen::saveXmlDocument(const XmlDoc& doc, const Zstring& filePath) //throw Fi
{
const std::string stream = serialize(doc); //noexcept
- //only update xml file if there are real changes
+ //only update XML file if there are real changes
try
{
if (getFileSize(filePath) == stream.size()) //throw FileError
bgstack15