summaryrefslogtreecommitdiff
path: root/test/files/run/streams.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/streams.scala')
-rw-r--r--test/files/run/streams.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/streams.scala b/test/files/run/streams.scala
index 83b7772886..e3c871c693 100644
--- a/test/files/run/streams.scala
+++ b/test/files/run/streams.scala
@@ -29,7 +29,7 @@ object Test extends Application {
def powers(x: Int) = if ((x&(x-1)) == 0) Some(x) else None
println(s3.flatMap(powers).reverse.head)
- // large enough to generate StackOverflows (on most systems)
+ // large enough to generate StackOverflows (on most systems)
// unless the following methods are tail call optimized.
val size = 100000