diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-10-14 11:01:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-14 08:01:13 -0700 |
commit | e5cb3104d07228de4f2614c425355e8f2f99507d (patch) | |
tree | 919827f5a8665874a166a6a6a3c5540e7d087c3a /runtime/doc/luvref.txt | |
parent | 0a19c1677877843d50cea6dec150acde50df356c (diff) | |
download | rneovim-e5cb3104d07228de4f2614c425355e8f2f99507d.tar.gz rneovim-e5cb3104d07228de4f2614c425355e8f2f99507d.tar.bz2 rneovim-e5cb3104d07228de4f2614c425355e8f2f99507d.zip |
docs: fix/remove invalid URLs #20647
Diffstat (limited to 'runtime/doc/luvref.txt')
-rw-r--r-- | runtime/doc/luvref.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/luvref.txt b/runtime/doc/luvref.txt index 6b77ee89a8..3ed3ef03c4 100644 --- a/runtime/doc/luvref.txt +++ b/runtime/doc/luvref.txt @@ -97,7 +97,7 @@ used here to facilitate documenting consistent behavior: CONTENTS *luv-contents* This documentation is mostly a retelling of the libuv API documentation -(http://docs.libuv.org/en/v1.x/api.html) within the context of luv's Lua API. +(https://docs.libuv.org/en/v1.x/api.html) within the context of luv's Lua API. Low-level implementation details and unexposed C functions and types are not documented here except for when they are relevant to behavior seen in the Lua module. @@ -933,7 +933,7 @@ uv.async_send({async}, {...}) *uv.async_send()* Poll handles are used to watch file descriptors for readability and writability, similar to the purpose of poll(2) -(http://linux.die.net/man/2/poll). +(https://linux.die.net/man/2/poll). The purpose of poll handles is to enable integrating external libraries that rely on the event loop to signal it about the socket status changes, like |