summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorAmir Saeid <amir@glgdgt.com>2026-02-18 21:29:55 +0000
committerAmir Saeid <amir@glgdgt.com>2026-02-18 21:29:55 +0000
commit6246638f5f3afb33e30c5e9210499a65d395037c (patch)
treec415a4c11ee189a60602d64f686d5a9b00345872 /content
parent32e0e105f663ace08896f22ab4079521070b0cac (diff)
Fix ofs2 typomain
Diffstat (limited to 'content')
-rw-r--r--content/post/fairstream.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/post/fairstream.md b/content/post/fairstream.md
index d4bba6c..a85cbce 100644
--- a/content/post/fairstream.md
+++ b/content/post/fairstream.md
@@ -30,7 +30,7 @@ triples.take(7).compile.toList
The `for` comprehension desugars into nested `flatMap` calls. Since `number` is infinite, the innermost generator tries $k = 1, 2, 3, \ldots$ forever for $i = 1, j = 1$ before it ever consider $j = 2$. No Pythagorean triple exists for $i = 1, j = 1$, so the stream never produces a result.
-This is not a quirk of ofs2. Any depth-first `flatMap` over infinite collections has this problem, including Scala's standard library `LazyList`.
+This is not a quirk of fs2. Any depth-first `flatMap` over infinite collections has this problem, including Scala's standard library `LazyList`.
## Fair interleaving with `fairstream`