lib/dom: add missing documentation
authorJean Privat <jean@pryen.org>
Thu, 6 Aug 2015 15:02:58 +0000 (11:02 -0400)
committerJean Privat <jean@pryen.org>
Thu, 6 Aug 2015 15:02:58 +0000 (11:02 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

lib/dom/xml_entities.nit

index 67dc4ac..219607c 100644 (file)
@@ -214,6 +214,7 @@ end
 class XMLProcessingInstructionTag
        super XMLTag
 
+       # Raw content usable by the third-party application
        var content: String
 
        redef fun to_s do return "<?{tag_name} {content}?>"
@@ -240,6 +241,7 @@ end
 class XMLDoctypeTag
        super XMLTag
 
+       # Raw content
        var content: String
 
        redef fun to_s do return "<!DOCTYPE {content}>"