From a56e079de08dbfb64c616ec311780b3c664a22f3 Mon Sep 17 00:00:00 2001 From: Luis Blanco Date: Wed, 4 Jan 2023 15:19:22 +0400 Subject: [PATCH] Fix readme --- include/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/README.md b/include/README.md index b945f5b..37b2d3a 100644 --- a/include/README.md +++ b/include/README.md @@ -14,9 +14,9 @@ with In **GYP**, the include directory should be set for your addon. An actual path to the directory is exported from the module -and is accessible like this: +and is accessible with: ``` -require('addon-tools-raub').include // a string +require('addon-tools-raub').getInclude() // a string ``` @@ -34,7 +34,7 @@ within `Napi::Value`-returning functions. Other global helpers: * `DBG_EXPORT`- set symbol visibility (mainly for callstack traces). On Windows, that is - equal to exporting a symbol: `__declspec(dllexport)`. + equal to exporting a symbol: `__declspec(dllexport)`. On Unix it does nothing.