Merge pull request #466 from Dmitry-Me/makeCommentMoreConcise

Make comment more concise
This commit is contained in:
Lee Thomason 2016-08-11 07:34:16 -07:00 committed by GitHub
commit 0bb5901961
1 changed files with 1 additions and 1 deletions

View File

@ -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();