We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24a65b commit f51fae8Copy full SHA for f51fae8
1 file changed
doc/node-gyp.md
@@ -27,8 +27,8 @@ examples reported below:
27
{
28
# myModule is the name of your native addon
29
"target_name": "myModule",
30
- "sources": ["src/my_module.cc", …],
31
- …
+ "sources": ["src/my_module.cc", ...],
+ ...
32
]
33
}
34
```
@@ -38,7 +38,7 @@ examples reported below:
38
```cpp
39
#include <napi.h>
40
41
-// …
+// ...
42
43
/**
44
* This code is our entry point. We receive two arguments here: the first is the
@@ -50,7 +50,7 @@ examples reported below:
50
*/
51
Napi::Object Init(Napi::Env env, Napi::Object exports) {
52
53
- // …
+ // ...
54
55
return exports;
56
0 commit comments