summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sources/scala/xml/Utility.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/scala/xml/Utility.scala b/sources/scala/xml/Utility.scala
index ecd43ff331..e687975115 100644
--- a/sources/scala/xml/Utility.scala
+++ b/sources/scala/xml/Utility.scala
@@ -34,7 +34,7 @@ object Utility {
}
/** serializes an instance of Node to a string that contains well-formed XML
- * @todo define a way to escape literal characters to &#xxx; references
+ * @todo define a way to escape literal characters to &xx; references
*/
def toXML( n:Node ):String = n match {
case Text( t ) =>
@@ -55,7 +55,8 @@ object Utility {
}
}
- /** serializes an instance of Node to a string that contains well-formed XML **/
+ /* serializes an instance of Node to a string that contains well-formed XML
+ **/
/*
def toPrettyXML( n:Node, indent:int ):String = { n match {
case Text( t ) =>