summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-11-21 15:40:40 +0000
committerburaq <buraq@epfl.ch>2003-11-21 15:40:40 +0000
commitb35e4689cfa48a48fae9c1ca4f6b55f3b11c8375 (patch)
tree5b51f46d66bdf042199a1e627c79647b30c35c4f /sources
parentef7ab5ba91e9db260eb8112e4bd546ae1a4447d6 (diff)
downloadscala-b35e4689cfa48a48fae9c1ca4f6b55f3b11c8375.tar.gz
scala-b35e4689cfa48a48fae9c1ca4f6b55f3b11c8375.tar.bz2
scala-b35e4689cfa48a48fae9c1ca4f6b55f3b11c8375.zip
comment
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/Text.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/xml/Text.scala b/sources/scala/xml/Text.scala
index 1070ded922..7e46603b34 100644
--- a/sources/scala/xml/Text.scala
+++ b/sources/scala/xml/Text.scala
@@ -17,7 +17,7 @@ case class Text( text:String ) extends Node {
override def toXML = Utility.escape( text );
- override def hashCode() = text.hashCode(); /* could be done at parse time */
+ override def hashCode() = text.hashCode(); /* could be done at parse time, too */
override def toString() = "Text("+text+")";
} // Text