Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 29, 2024
1 parent ccadf0b commit 9e08b0f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ docs/**/node_modules/
pids
*.pid
*.seed
yarn.lock
package-lock.json

# Typescript #
##############
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
<section class="release" id="unreleased">

## Unreleased (2024-07-28)
## Unreleased (2024-07-29)

<section class="commits">

### Commits

<details>

- [`6f3e683`](https://github.com/stdlib-js/stdlib/commit/6f3e683d6409d7b05965580c56f79e07f659d08b) - **docs:** fix return type [(#2700)](https://github.com/stdlib-js/stdlib/pull/2700) _(by Gunj Joshi)_
- [`a2ad2e1`](https://github.com/stdlib-js/stdlib/commit/a2ad2e1ad4f9150b818e3cf828815d4b73913f59) - **chore:** update package meta data [(#2696)](https://github.com/stdlib-js/stdlib/pull/2696) _(by stdlib-bot, Philipp Burckhardt)_

</details>
Expand All @@ -24,8 +25,9 @@

### Contributors

A total of 1 person contributed to this release. Thank you to this contributor:
A total of 2 people contributed to this release. Thank you to the following contributors:

- Gunj Joshi
- Philipp Burckhardt

</section>
Expand Down
4 changes: 2 additions & 2 deletions benchmark/c/native/benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ static double benchmark( void ) {
for ( i = 0; i < ITERATIONS; i++ ) {
x = ( 20.0 * rand_double() ) - 10.0;
stdlib_base_fresnel( x, &S, &C );
if ( C != C || S != S) {
if ( C != C || S != S ) {
printf( "unexpected results\n" );
break;
}
}
elapsed = tic() - t;
if ( C != C || S != S) {
if ( C != C || S != S ) {
printf( "unexpected results\n" );
}
return elapsed;
Expand Down
2 changes: 1 addition & 1 deletion lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
*
* @private
* @param {number} x - input value
* @returns {Array<number>} S(x) and C(x)
* @returns {Float64Array} S(x) and C(x)
*
* @example
* var v = fresnel( 0.0 );
Expand Down

0 comments on commit 9e08b0f

Please sign in to comment.