Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 779cb70

Browse files
committedApr 2, 2025·
Auto-generated commit
1 parent 5cc30aa commit 779cb70

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -38706,6 +38706,7 @@ A total of 51 people contributed to this release. Thank you to the following con
3870638706

3870738707
<details>
3870838708

38709+
- [`4e53b42`](https://github.com/stdlib-js/stdlib/commit/4e53b4284ec07bae3e7825ab6e78c1ffca1ed903) - **style:** remove whitespace _(by Athan Reines)_
3870938710
- [`09aac30`](https://github.com/stdlib-js/stdlib/commit/09aac30680a3c2c81b0741cb025175a8b1e54ec4) - **chore:** address commit comment [(#5450)](https://github.com/stdlib-js/stdlib/pull/5450) _(by Harsh)_
3871038711
- [`78dc663`](https://github.com/stdlib-js/stdlib/commit/78dc663f35d9de92c555c21ae65a4e9883270431) - **chore:** address commit comment [(#5451)](https://github.com/stdlib-js/stdlib/pull/5451) _(by Harsh)_
3871138712
- [`cfa7b23`](https://github.com/stdlib-js/stdlib/commit/cfa7b23590ff73b540aab2601eb2a0b7539d1f56) - **chore:** address commit comment [(#5449)](https://github.com/stdlib-js/stdlib/pull/5449) _(by Harsh)_

‎strided/dnanstdevwd/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ double API_SUFFIX(stdlib_strided_dnanstdevwd)( const CBLAS_INT N, const double c
4747
* @return output value
4848
*/
4949
double API_SUFFIX(stdlib_strided_dnanstdevwd_ndarray)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
50-
return stdlib_base_sqrt( API_SUFFIX(stdlib_strided_dnanvariancewd_ndarray )( N, correction, X, strideX, offsetX ) );
50+
return stdlib_base_sqrt( API_SUFFIX(stdlib_strided_dnanvariancewd_ndarray)( N, correction, X, strideX, offsetX ) );
5151
}

0 commit comments

Comments
 (0)
Please sign in to comment.