1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-24 19:24:48 +00:00

Merge pull request #603 from pepe/evcal-doc

Fix ev/call doc
This commit is contained in:
Calvin Rose
2021-01-20 20:52:23 -06:00
committed by GitHub

View File

@@ -3148,8 +3148,10 @@
(defn net/close "Alias for ev/close." [stream] (ev/close stream)) (defn net/close "Alias for ev/close." [stream] (ev/close stream))
(defn ev/call (defn ev/call
"Call a function asynchronously. Returns a fiber that is scheduled to " ```
"run the function." Call a function asynchronously.
Returns a fiber that is scheduled to run the function.
```
[f & args] [f & args]
(ev/go (fiber/new (fn [&] (f ;args)) :tp))) (ev/go (fiber/new (fn [&] (f ;args)) :tp)))