diff options
author | Jameson Nash <vtjnash@gmail.com> | 2020-08-18 13:07:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 13:07:04 -0400 |
commit | 707dd7f17d9d84d972282666fee47dd3b216349b (patch) | |
tree | b1c93f432bccaac4b9b3acf22ae77a73e6801955 /docs/src/guide/filesystem.rst | |
parent | 99e88edf736827a26e8ce9d87da972f41ce828d9 (diff) | |
download | libuv-707dd7f17d9d84d972282666fee47dd3b216349b.tar.gz libuv-707dd7f17d9d84d972282666fee47dd3b216349b.zip |
doc: fix most sphinx warnings
PR-URL: https://github.com/libuv/libuv/pull/2956
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src/guide/filesystem.rst')
-rw-r--r-- | docs/src/guide/filesystem.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/guide/filesystem.rst b/docs/src/guide/filesystem.rst index 63dbbe47..e89d4cd5 100644 --- a/docs/src/guide/filesystem.rst +++ b/docs/src/guide/filesystem.rst @@ -33,7 +33,7 @@ A file descriptor is obtained using int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode, uv_fs_cb cb) ``flags`` and ``mode`` are standard -`Unix flags <http://man7.org/linux/man-pages/man2/open.2.html>`_. +`Unix flags <https://man7.org/linux/man-pages/man2/open.2.html>`_. libuv takes care of converting to the appropriate Windows flags. File descriptors are closed using |