summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-06-14 16:08:53 +0000
committerburaq <buraq@epfl.ch>2004-06-14 16:08:53 +0000
commit3cf6799f124b1882036f2e78da220d982ffc4d14 (patch)
treed6a645fb42f1af981b27e761f493347e9176c4a0 /sources
parentf020b6c5bad5e8cb4ab4a8f24d6cd9a83e38cf2e (diff)
downloadscala-3cf6799f124b1882036f2e78da220d982ffc4d14.tar.gz
scala-3cf6799f124b1882036f2e78da220d982ffc4d14.tar.bz2
scala-3cf6799f124b1882036f2e78da220d982ffc4d14.zip
typo
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/NodeFactory.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/xml/NodeFactory.scala b/sources/scala/xml/NodeFactory.scala
index 0dab5b90f1..25b6782228 100644
--- a/sources/scala/xml/NodeFactory.scala
+++ b/sources/scala/xml/NodeFactory.scala
@@ -16,7 +16,7 @@ abstract class NodeFactory {
def makeText( s:String ) = Text( s );
def makeComment( s:String ):Seq[Comment] =
- if(config.ignodeComments) Nil else List( Comment( s ) );
+ if(config.ignoreComments) Nil else List( Comment( s ) );
def makeProcInstr( t:String, s:String ) = ProcInstr( t, s );
def makeCharData( s:String ) = CharData( s );