[gxml] DocumentType.vala: update comments



commit 9c07511fb8567c3ce63bb97f26ab2c004e4241d0
Author: Richard Schwarting <aquarichy gmail com>
Date:   Sat Jul 27 00:01:53 2013 -0400

    DocumentType.vala: update comments

 gxml/DocumentType.vala |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/gxml/DocumentType.vala b/gxml/DocumentType.vala
index 8ca4541..585d27e 100644
--- a/gxml/DocumentType.vala
+++ b/gxml/DocumentType.vala
@@ -46,15 +46,20 @@ namespace GXml {
                /* Public properties */
 
                /**
-                * That which follows DOCTYPE, like 'xml' or 'html', For example, the name
-                * 'html' exists for a document with the XML doctype
-                * declaration of {{{ &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";> }}}
+                * That which follows DOCTYPE in the XML doctype
+                * declaration, like 'xml' or 'html'. For example, the
+                * document type name is 'html' for a document with
+                * the XML doctype declaration of {{{ &lt;!DOCTYPE
+                * HTML PUBLIC "-//W3C//DTD HTML 4.01
+                * Transitional//EN"
+                * "http://www.w3.org/TR/html4/loose.dtd";> }}}
                */
                public string name {
                        get {
                                // TODO: is it possible for int_subset and ext_subset to have different names?
                                return this.int_subset->name;
                        }
+                       // TODO: should this match node_name?
                        private set {
                        }
                }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]