Skip to content

Commit cd99fef

Browse files
docs: fix C examples
PR-URL: #11135 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent b20816f commit cd99fef

File tree

22 files changed

+22
-22
lines changed

22 files changed

+22
-22
lines changed

lib/node_modules/@stdlib/math/strided/special/dmskabs/src/dmskabs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { -2.0, 1.0, -3.0, -5.0, 4.0, 0.0, -1.0, -3.0 };

lib/node_modules/@stdlib/math/strided/special/dmskabs2/src/dmskabs2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { -2.0, 1.0, -3.0, -5.0, 4.0, 0.0, -1.0, -3.0 };

lib/node_modules/@stdlib/math/strided/special/dmskcbrt/src/dmskcbrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 0.0, 1.0, 8.0, 27.0, 64.0, 125.0, 216.0, 343.0 };

lib/node_modules/@stdlib/math/strided/special/dmskceil/src/dmskceil.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 1.1, 2.5, -3.5, 4.0, -5.9, 6.4, -7.0, 8.2 };

lib/node_modules/@stdlib/math/strided/special/dmskdeg2rad/src/dmskdeg2rad.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 0.0, 30.0, 45.0, 60.0, 90.0, 120.0, 150.0, 180.0 };

lib/node_modules/@stdlib/math/strided/special/dmskfloor/src/dmskfloor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 1.1, 2.5, -3.5, 4.0, -5.9, 6.4, -7.0, 8.2 };

lib/node_modules/@stdlib/math/strided/special/dmskinv/src/dmskinv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { -20.0, -1.0, 2.0, 4.0, 10.0, 100.0, 0.0, -0.0 };

lib/node_modules/@stdlib/math/strided/special/dmskramp/src/dmskramp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 1.1, 2.5, -3.5, 4.0, -5.9, 6.4, -7.0, 8.2 };

lib/node_modules/@stdlib/math/strided/special/dmskrsqrt/src/dmskrsqrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 0.0, 4.0, 9.0, 12.0, 24.0, 64.0, 81.0, 101.0 };

lib/node_modules/@stdlib/math/strided/special/dmsksqrt/src/dmsksqrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param strideY Y stride length
3434
*
3535
* @example
36-
* include <stdint.h>
36+
* #include <stdint.h>
3737
*
3838
* // Create an input strided array:
3939
* const double x[] = { 0.0, 4.0, 9.0, 12.0, 24.0, 64.0, 81.0, 101.0 };

0 commit comments

Comments
 (0)