summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-04-02 09:35:01 +0000
committerburaq <buraq@epfl.ch>2004-04-02 09:35:01 +0000
commit381f20a04ba401e7f8dbbbc59120b2b1b64fbd48 (patch)
tree27379d52dfacb74f858550f6471e81a03ffbec69
parentbce606fb00b2ab5af4a5913cd7d1c72116bd8566 (diff)
downloadscala-381f20a04ba401e7f8dbbbc59120b2b1b64fbd48.tar.gz
scala-381f20a04ba401e7f8dbbbc59120b2b1b64fbd48.tar.bz2
scala-381f20a04ba401e7f8dbbbc59120b2b1b64fbd48.zip
removed &#
-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 &amp;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 ) =>