From 0e301f7498bb9e3e10a968f2beeea7a4bd272ad7 Mon Sep 17 00:00:00 2001 From: notomo Date: Tue, 22 Aug 2023 09:20:25 +0900 Subject: [PATCH] docs: add missing uv.os_unsetenv() parameter --- docs.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs.md b/docs.md index a6f10180..a9e91732 100644 --- a/docs.md +++ b/docs.md @@ -3771,7 +3771,12 @@ Sets the environmental variable specified by `name` with the string `value`. **Warning:** This function is not thread safe. -### `uv.os_unsetenv()` +### `uv.os_unsetenv(name)` + +**Parameters:** +- `name`: `string` + +Unsets the environmental variable specified by `name`. **Returns:** `boolean` or `fail`