diff options
author | Jameson Nash <vtjnash@gmail.com> | 2020-08-21 17:25:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 17:25:42 -0400 |
commit | 79c531cb7d3b8c11c0b4be1ccaefa5b2159f7237 (patch) | |
tree | e5494a0f4b13d023b164e4ef91dcd17b84eafcfa /docs/src | |
parent | 707dd7f17d9d84d972282666fee47dd3b216349b (diff) | |
download | libuv-79c531cb7d3b8c11c0b4be1ccaefa5b2159f7237.tar.gz libuv-79c531cb7d3b8c11c0b4be1ccaefa5b2159f7237.zip |
nfci: address some style nits
PR-URL: https://github.com/libuv/libuv/pull/2954
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/fs.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/fs.rst b/docs/src/fs.rst index 17388484..0bf2abed 100644 --- a/docs/src/fs.rst +++ b/docs/src/fs.rst @@ -535,8 +535,8 @@ Helper functions For a OS-dependent handle, get the file descriptor in the C runtime. On UNIX, returns the ``os_fd`` intact. On Windows, this calls `_open_osfhandle <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/open-osfhandle?view=vs-2019>`_. - Note that the return value is still owned by the CRT, - any attempts to close it or to use it after closing the handle may lead to malfunction. + Note that this consumes the argument, any attempts to close it or to use it + after closing the return value may lead to malfunction. .. versionadded:: 1.23.0 |