Selaa lähdekoodia

Make comment more concise

Dmitry-Me 9 vuotta sitten
vanhempi
commit
caa72a641e
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      tinyxml2.cpp

+ 1 - 1
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();