We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3949d91 commit 78b1e11Copy full SHA for 78b1e11
src/Node/EventEmitter.purs
@@ -1,7 +1,7 @@
1
-- | ## Handling events emitted by an `EventEmitter`
2
-- |
3
-- | One can add callbacks to an `EventEmitter` on two major axes:
4
--- | - whether listener is added to the front (i.e. `on`) or back (i.e. `prependListener`) of the array
+-- | - whether listener is added to the **end** (i.e. `on`) or **start** (i.e. `prependListener`) of the array
5
-- | - whether a listener is automatically removed after the first event (i.e. `once` or `prependOnceListener`).
6
7
-- | This module provides functions for each of the above 4 callback-adding functions
0 commit comments