Skip to content

Commit 3aed562

Browse files
committed
Added requested changes
- fixed typos - used path.resolve instead of path.relative.
1 parent f1ef887 commit 3aed562

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ grouped by version and api types.
5757

5858
```js
5959
V1: {
60-
js_native_api_symblos: [
60+
js_native_api_symbols: [
6161
// List of symbols in js_native_api.h for the version 1.
6262
],
63-
node_api_symblos: [
63+
node_api_symbols: [
6464
// List of symbols in node_api.h for the version 1
6565
]
6666
},

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const path = require('path');
44
const symbols = require('./symbols')
55

6-
const include_dir = path.relative('.', `${__dirname}/include`);
6+
const include_dir = path.resolve(`${__dirname}/include`);
77

88
module.exports = {
99
include_dir,

0 commit comments

Comments
 (0)