Skip to content

Commit

Permalink
Add Missing Paren
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherDavenport authored Sep 8, 2019
1 parent b10a41e commit 58ff8bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/fs2/Stream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3526,7 +3526,7 @@ object Stream extends StreamLowPriority {
* if it is Some, or terminating on None
*
* @example {{{
* scala> Stream.unfoldLoop(0)(i => (i, if (i < 5) Some(i+1) else None).toList
* scala> Stream.unfoldLoop(0)(i => (i, if (i < 5) Some(i+1) else None)).toList
* res0: List[Int] = List(0, 1, 2, 3, 4, 5)
* }}}
*/
Expand Down

0 comments on commit 58ff8bf

Please sign in to comment.