Clarify comment
authoraspinall
Sat, 17 Feb 2007 17:18:47 +0100
changeset 22334 4c96d3370186
parent 22333 652f316ca26a
child 22335 6c4204df6863
Clarify comment
src/Pure/General/xml.ML
--- a/src/Pure/General/xml.ML	Fri Feb 16 22:46:03 2007 +0100
+++ b/src/Pure/General/xml.ML	Sat Feb 17 17:18:47 2007 +0100
@@ -18,7 +18,7 @@
   datatype tree =
       Elem of string * attributes * tree list
     | Text of string    (* native string, subject to XML.text on output *)
-    | Rawtext of string (* XML string: not parsed and output directly   *)
+    | Rawtext of string (* XML string: output directly, not parsed      *)
   type content = tree list
   type element = string * attributes * content
   val string_of_tree: tree -> string