We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7623954 commit 10c10b9Copy full SHA for 10c10b9
lazy-async/readme.md
@@ -10,7 +10,7 @@ once. In situations like these, we use `LazyAsync`.
10
Under the hood, an `IO` action is turned into a `LazyAsync` by constructing two
11
things: An `Async` (from the [async] package), and a `TVar Bool` (from the [stm]
12
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
+wanted yet. The asynchronous thread waits until the `TVar` turns `True` and then
14
runs the action.
15
16
[async]: https://hackage.haskell.org/package/async
0 commit comments