Skip to content

Commit 18ad933

Browse files
docs: fix typo by replacing int_32 with int32_t
PR-URL: #5546 Reviewed-by: Athan Reines <kgryte@gmail.com> Co-authored-by: stdlib-bot <noreply@stdlib.io>
1 parent 8da699b commit 18ad933

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/napi/ternary/include/stdlib/math/base/napi/ternary/did_d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @example
3232
* #include <stdint.h>
3333
*
34-
* static double fcn( const double x, const int_32 y, const double z ) {
34+
* static double fcn( const double x, const int32_t y, const double z ) {
3535
* // ...
3636
* }
3737
*

lib/node_modules/@stdlib/math/base/napi/ternary/include/stdlib/math/base/napi/ternary/dii_d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @example
3232
* #include <stdint.h>
3333
*
34-
* static double fcn( const double x, const int_32 y, const int_32 z ) {
34+
* static double fcn( const double x, const int32_t y, const int32_t z ) {
3535
* // ...
3636
* }
3737
*

lib/node_modules/@stdlib/math/base/napi/ternary/include/stdlib/math/base/napi/ternary/iid_d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @example
3232
* #include <stdint.h>
3333
*
34-
* static double fcn( const int_32 x, const int_32 y, const double z ) {
34+
* static double fcn( const int32_t x, const int32_t y, const double z ) {
3535
* // ...
3636
* }
3737
*

lib/node_modules/@stdlib/math/base/napi/ternary/include/stdlib/math/base/napi/ternary/iii_d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @example
3232
* #include <stdint.h>
3333
*
34-
* static double fcn( const int_32 x, const int_32 y, const int_32 z ) {
34+
* static double fcn( const int32_t x, const int32_t y, const int32_t z ) {
3535
* // ...
3636
* }
3737
*

0 commit comments

Comments
 (0)