diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-01-06 11:45:25 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-01-06 12:02:27 +0100 |
commit | 099bd35a7d0a52bcf3c58d1b841d008c8af0a8de (patch) | |
tree | 691b52f6016d62de0bfa7d71c51fd58ce2f5909c | |
parent | 2eb74bff0e52b29dafbca9203006f003a26911a3 (diff) | |
download | rneovim-099bd35a7d0a52bcf3c58d1b841d008c8af0a8de.tar.gz rneovim-099bd35a7d0a52bcf3c58d1b841d008c8af0a8de.tar.bz2 rneovim-099bd35a7d0a52bcf3c58d1b841d008c8af0a8de.zip |
docs(luvref): update to version bump
-rw-r--r-- | runtime/doc/luvref.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/luvref.txt b/runtime/doc/luvref.txt index 915b69efe3..1a811a361b 100644 --- a/runtime/doc/luvref.txt +++ b/runtime/doc/luvref.txt @@ -977,15 +977,15 @@ called from another thread. async:send() < -uv.new_async([{callback}]) *uv.new_async()* +uv.new_async({callback}) *uv.new_async()* Parameters: - - `callback`: `callable` or `nil` + - `callback`: `callable` - `...`: `threadargs` passed to/from `uv.async_send(async, ...)` Creates and initializes a new |uv_async_t|. Returns the Lua - userdata wrapping it. A `nil` callback is allowed. + userdata wrapping it. Returns: `uv_async_t userdata` or `fail` @@ -2067,11 +2067,11 @@ uv.pipe({read_flags}, {write_flags}) *uv.pipe()* uv.pipe_bind2({pipe}, {name}, {flags}) *uv.pipe_bind2()* > method form `pipe:pipe_bind(name, flags)` - + Parameters: - `pipe`: `uv_pipe_t userdata` - `name`: `string` - - `flags`: `integer` or `table` or `nil`(default: 0) + - `flags`: `integer` or `table` or `nil` (default: 0) Flags: - If `type(flags)` is `number`, it must be `0` or @@ -2101,7 +2101,7 @@ uv.pipe_connect2(pipe, name, [flags], [callback]) *uv.pipe_connect2()* Parameters: - `pipe`: `uv_pipe_t userdata` - `name`: `string` - - `flags`: `integer` or `table` or `nil`(default: 0) + - `flags`: `integer` or `table` or `nil` (default: 0) - `callback`: `callable` or `nil` - `err`: `nil` or `string` |