Skip to content

Commit ae8971c

Browse files
committed
Remove trailing comma
1 parent 4335f32 commit ae8971c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/strided/special/deg2rad/src/addon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void *data[] = {
122122

123123
// uint8
124124
(void *)stdlib_base_deg2radf,
125-
(void *)stdlib_base_deg2rad,
125+
(void *)stdlib_base_deg2rad
126126
};
127127

128128
// Create a strided array function object:

lib/node_modules/@stdlib/math/strided/special/inv/src/addon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void *data[] = {
122122

123123
// uint8
124124
(void *)stdlib_base_invf,
125-
(void *)stdlib_base_inv,
125+
(void *)stdlib_base_inv
126126
};
127127

128128
// Create a strided array function object:

lib/node_modules/@stdlib/math/strided/special/rsqrt/src/addon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void *data[] = {
122122

123123
// uint8
124124
(void *)stdlib_base_rsqrtf,
125-
(void *)stdlib_base_rsqrt,
125+
(void *)stdlib_base_rsqrt
126126
};
127127

128128
// Create a strided array function object:

lib/node_modules/@stdlib/math/strided/special/sqrt/src/addon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void *data[] = {
122122

123123
// uint8
124124
(void *)stdlib_base_sqrtf,
125-
(void *)stdlib_base_sqrt,
125+
(void *)stdlib_base_sqrt
126126
};
127127

128128
// Create a strided array function object:

0 commit comments

Comments
 (0)