From caa72a641e8c7cbfc4cf2a0df5b5b0f06d437786 Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Wed, 10 Aug 2016 17:34:34 +0300 Subject: [PATCH] Make comment more concise --- tinyxml2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 1717e0a..4d3d84b 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp @@ -739,7 +739,7 @@ XMLNode::~XMLNode() const char* XMLNode::Value() const { - // Catch an edge case: XMLDocuments don't have a a Value. Carefully return nullptr. + // Edge case: XMLDocuments don't have a Value. Return null. if ( this->ToDocument() ) return 0; return _value.GetStr();