Skip to content

Commit 5cf2b55

Browse files
committed
Auto-generated commit
1 parent 1d014d0 commit 5cf2b55

File tree

23 files changed

+23
-22
lines changed

23 files changed

+23
-22
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -725,6 +725,7 @@ A total of 90 issues were closed in this release:
725725

726726
<details>
727727

728+
- [`cd99fef`](https://github.com/stdlib-js/stdlib/commit/cd99fef661e7a5f6e600ee81295ec4dbc8501187) - **docs:** fix C examples [(#11135)](https://github.com/stdlib-js/stdlib/pull/11135) _(by anee3)_
728729
- [`b20816f`](https://github.com/stdlib-js/stdlib/commit/b20816f0b727f9a365b0fd526092db9cd2ad75fc) - **docs:** fix incorrect return annotation [(#11128)](https://github.com/stdlib-js/stdlib/pull/11128) _(by anee3)_
729730
- [`b7feba2`](https://github.com/stdlib-js/stdlib/commit/b7feba2d63f20199707be94ffa1284538e0c4395) - **docs:** fix C example variable declaration [(#11127)](https://github.com/stdlib-js/stdlib/pull/11127) _(by anee3)_
730731
- [`727c508`](https://github.com/stdlib-js/stdlib/commit/727c508beee8414b732fadb3f882d98cbb3f69cf) - **docs:** fix C example function call [(#11126)](https://github.com/stdlib-js/stdlib/pull/11126) _(by anee3)_

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 };

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 };

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 };

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 };

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 };

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 };

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 };

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 };

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 };

0 commit comments

Comments
 (0)