Skip to content

Commit f536b5c

Browse files
committed
Auto-generated commit
1 parent e424d4e commit f536b5c

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

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

500500
<details>
501501

502+
- [`38ae655`](https://github.com/stdlib-js/stdlib/commit/38ae655186f89a528284564cb70708f479d0c307) - **docs:** fix function name _(by Karan Anand)_
502503
- [`b2cf286`](https://github.com/stdlib-js/stdlib/commit/b2cf28636042c807067cbd86d92b0eae4dd5a4f0) - **chore:** add structured package data _(by Karan Anand)_
503504
- [`a2cfe0e`](https://github.com/stdlib-js/stdlib/commit/a2cfe0e3fe5167301372d22dbae8e8b19917f77c) - **test:** update test messages according to current project conventions _(by Karan Anand)_
504505
- [`c5ccaff`](https://github.com/stdlib-js/stdlib/commit/c5ccaff1e7697684168c649fd87882b259664c73) - **test:** remove the use of `IS_BROWSER` from test files _(by Karan Anand)_

base/special/csc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Evaluates the [cosecant][trigonometric-functions] of `x` (in radians).
117117
double out = stdlib_base_csc( 0.0 );
118118
// returns Infinity
119119

120-
out = stdlib_base_cos( 3.141592653589793 / 2.0 );
120+
out = stdlib_base_csc( 3.141592653589793 / 2.0 );
121121
// returns 1.0
122122
```
123123

base/special/csc/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @return cosecant
2727
*
2828
* @example
29-
* double y = stdlib_base_cos( 3.141592653589793 / 2.0 );
29+
* double y = stdlib_base_csc( 3.141592653589793 / 2.0 );
3030
* // returns 1.0
3131
*/
3232
double stdlib_base_csc( const double x ) {

0 commit comments

Comments
 (0)