[gxml] Fix < in docs; I swear that I had to use the entity reference before



commit 4915fe0a2c336b7a61fef1bd233e510f2bf7c219
Author: Richard Schwarting <aquarichy gmail com>
Date:   Sat Jul 27 00:01:29 2013 -0400

    Fix < in docs; I swear that I had to use the entity reference before

 gxml/Comment.vala |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/gxml/Comment.vala b/gxml/Comment.vala
index e95340d..f972026 100644
--- a/gxml/Comment.vala
+++ b/gxml/Comment.vala
@@ -24,16 +24,17 @@
  */
 
 /* TODO: do we really want a comment node, or just use strings? */
+
 /**
  * An XML comment.
  *
  * To create one, use { link GXml.Document.create_comment}.
  *
  * An XML example looks like: {{{
- * &lt;someNode>
- *    &lt;!-- this is a comment -->
+ * <someNode>
+ *    <!-- this is a comment -->
  *    text in the node
- *  &lt;/someNode> }}}
+ *  </someNode> }}}
  * For more, see: [[http://www.w3.org/TR/DOM-Level-1/level-one-core.html#ID-1728279322]]
  */
 public class GXml.Comment : GXml.CharacterData {


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