summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
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