Skip to content

Commit 10c10b9

Browse files
committed
fix readme typo
1 parent 7623954 commit 10c10b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lazy-async/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ once. In situations like these, we use `LazyAsync`.
1010
Under the hood, an `IO` action is turned into a `LazyAsync` by constructing two
1111
things: An `Async` (from the [async] package), and a `TVar Bool` (from the [stm]
1212
package). The `TVar`, initialized to `False`, indicates whether the action is
13-
wanted yet. The asynchronous thread waits until the `TVar` turns @True@ and then
13+
wanted yet. The asynchronous thread waits until the `TVar` turns `True` and then
1414
runs the action.
1515

1616
[async]: https://hackage.haskell.org/package/async

0 commit comments

Comments
 (0)