Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/scala/stdlib/Traversables.scala
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ object Traversables extends FlatSpec with Matchers with org.scalaexercises.defin
result.isInstanceOf[IndexedSeq[_]] should be(res0)
}

/** `toStream` will convert any `Traversable* to a `Stream` which is a lazy list where elements are evaluated as they are needed:
/** `toStream` will convert any `Traversable` to a `Stream` which is a lazy list where elements are evaluated as they are needed:
*/
def toStreamFunctionTraversables(res0: Boolean, res1: Stream[Int]) {
val list = List(4, 6, 7, 8, 9, 13, 14)
Expand Down