From ebf8011ff9e36deb4be408f830cab74f9b8e7e09 Mon Sep 17 00:00:00 2001 From: Shalitha Suranga Date: Thu, 30 May 2024 16:54:35 +0530 Subject: [PATCH] Update overview.md --- docs/api/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/overview.md b/docs/api/overview.md index 32c00928..6d59b8e3 100644 --- a/docs/api/overview.md +++ b/docs/api/overview.md @@ -18,7 +18,7 @@ const conf = await app.getConfig(); // Vanilla Js: await Neutralino.app.getConf ``` Let's learn how native API calls internally work. Assume that you need to get an environment variable value from the operating system. -You can call the [`Neutralino.os.getEnv`](os.md#osgetenvkey) +You can call the [`Neutralino.os.getEnv`](../api/os.md#osgetenvkey) JavaScript method. The client library will call the Neutralinojs server with a WebSocket message once you invoke the `getEnv` method. After that, the Neutralinojs server will execute the native operation to fetch the given environment variable.