diff options
author | Stephen Belanger <admin@stephenbelanger.com> | 2019-01-26 22:50:17 -0800 |
---|---|---|
committer | Santiago Gimeno <santiago.gimeno@gmail.com> | 2019-02-05 08:30:01 +0100 |
commit | 43744c37088444f2643dbea58074e950bcdbfc30 (patch) | |
tree | 9f374191d80ced98a2229ea676efb612e1f776d4 /docs/src | |
parent | a9e6cc7b9967308cac61414aa907070412461c8f (diff) | |
download | libuv-43744c37088444f2643dbea58074e950bcdbfc30.tar.gz libuv-43744c37088444f2643dbea58074e950bcdbfc30.zip |
doc: fix uv_get_free_memory doc
There was a formatting error that prevented the uv_get_free_memory
function from appearing on the page.
PR-URL: https://github.com/libuv/libuv/pull/2163
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/misc.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/src/misc.rst b/docs/src/misc.rst index 81c03a85..ef003289 100644 --- a/docs/src/misc.rst +++ b/docs/src/misc.rst @@ -431,7 +431,10 @@ API .. versionadded:: 1.9.0 -.. uint64_t uv_get_free_memory(void) +.. c:function:: uint64_t uv_get_free_memory(void) + + Gets memory information (in bytes). + .. c:function:: uint64_t uv_get_total_memory(void) Gets memory information (in bytes). |