Skip to content

Commit f51fae8

Browse files
authored
Revert ellipsis
1 parent b24a65b commit f51fae8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/node-gyp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ examples reported below:
2727
{
2828
# myModule is the name of your native addon
2929
"target_name": "myModule",
30-
"sources": ["src/my_module.cc", ],
31-
30+
"sources": ["src/my_module.cc", ...],
31+
...
3232
]
3333
}
3434
```
@@ -38,7 +38,7 @@ examples reported below:
3838
```cpp
3939
#include <napi.h>
4040

41-
//
41+
// ...
4242

4343
/**
4444
* This code is our entry point. We receive two arguments here: the first is the
@@ -50,7 +50,7 @@ examples reported below:
5050
*/
5151
Napi::Object Init(Napi::Env env, Napi::Object exports) {
5252

53-
//
53+
// ...
5454

5555
return exports;
5656
}

0 commit comments

Comments
 (0)