Skip to content

Commit 176cfcd

Browse files
committed
Remove semicolon
1 parent 3132f73 commit 176cfcd

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/strided/napi/dmap

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/strided/napi/dmap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ static double scale( const double x ) {
156156
// ...
157157

158158
// Register a Node-API module:
159-
STDLIB_STRIDED_NAPI_MODULE_DMAP( scale );
159+
STDLIB_STRIDED_NAPI_MODULE_DMAP( scale )
160160
```
161161
162162
The macro expects the following arguments:

lib/node_modules/@stdlib/strided/napi/dmap/include/stdlib/strided/napi/dmap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* // ...
3636
*
3737
* // Register a Node-API module:
38-
* STDLIB_STRIDED_NAPI_MODULE_DMAP( scale );
38+
* STDLIB_STRIDED_NAPI_MODULE_DMAP( scale )
3939
*/
4040
#define STDLIB_STRIDED_NAPI_MODULE_DMAP( clbk ) \
4141
static napi_value stdlib_strided_napi_dmap_wrapper( \

0 commit comments

Comments
 (0)