You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Quickref.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,15 +198,15 @@ For Events, the returned Event fires whenever the latest Event supplied by the w
198
198
The functions mentioned above are used to create a static FRP network.
199
199
There are additional typeclasses that can be used to modify the FRP network, to have it interact with IO action, or to introspect the building of the network.
200
200
201
-
Th typeclasses and their associated annotations include:
201
+
The typeclasses and their associated annotations include:
202
202
203
203
-`PostBuild`
204
204
Fire an Event when an FRP network has been set up.
205
205
```haskell
206
206
[B] -- Function runs in any monad supporting PostBuild
207
207
```
208
208
209
-
- `Adjustable`
209
+
- `Adjustable`
210
210
UseEvents to add or remove pieces of an FRP network.
211
211
```haskell
212
212
[A] -- Function runs in any monad supporting Adjustable
@@ -271,7 +271,7 @@ Th typeclasses and their associated annotations include:
271
271
```haskell
272
272
-- Run side-effecting actions in Event when it occurs; returned Event contains
273
273
-- results. Side effects run in the (Performable m) monad which is associated with
274
-
-- the (PerformEvent t m) typeclass constraint.
274
+
-- the (PerformEvent t m) typeclass constraint.
275
275
-- This allows for working with IO when a ((MonadIO (Performable m)) constraint is available.
0 commit comments