summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorBlair Zajac <blair@orcaware.com>2011-12-06 10:29:13 -0800
committerBlair Zajac <blair@orcaware.com>2011-12-06 10:29:13 -0800
commitc477839307eefd3925c44b5067d3eddad3ba5e6f (patch)
tree24df084276316561a368cf8ae2a6531afdbe917c /test/files/run
parent526c086e121d8d6c15726c769edbf96efd882ae7 (diff)
downloadscala-c477839307eefd3925c44b5067d3eddad3ba5e6f.tar.gz
scala-c477839307eefd3925c44b5067d3eddad3ba5e6f.tar.bz2
scala-c477839307eefd3925c44b5067d3eddad3ba5e6f.zip
Fix documentation typo.
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/json.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/json.scala b/test/files/run/json.scala
index 7d3b635006..a81f12564c 100644
--- a/test/files/run/json.scala
+++ b/test/files/run/json.scala
@@ -3,7 +3,7 @@ import scala.collection.immutable.TreeMap
object Test extends App {
/* This method converts parsed JSON back into real JSON notation with objects in
- * sorted-key order. Not required by the spec, but it allows us to to a stable
+ * sorted-key order. Not required by the spec, but it allows us to do a stable
* toString comparison. */
def jsonToString(in : Any) : String = in match {
case l : List[_] => "[" + l.map(jsonToString).mkString(", ") + "]"