aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index bb77f81..65f9ca9 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
### Motivation
-The problem with depth-first search `flatMap` of [https://fs2.io/](`fs2.Stream`) and standard library's collection is that when you nest infinite streams, it gets stuck exploring the first branch forever:
+The problem with depth-first search `flatMap` of [`fs2.Stream`](https://fs2.io/) and standard library's collection is that when you nest infinite streams, it gets stuck exploring the first branch forever:
```scala
val number = fs2.Stream.iterate(1)(_ + 1) // 1, 2, 3, ...