Skip to content

Commit e465f39

Browse files
authored
chore: code review
1 parent db0cfa9 commit e465f39

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

lib/node_modules/@stdlib/stats/base/dsnanmean/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,22 @@ console.log( v );
177177

178178
<!-- /.examples -->
179179

180+
<!-- C interface documentation. -->
181+
182+
* * *
183+
184+
<section class="c">
185+
186+
## C APIs
187+
188+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
189+
190+
<section class="intro">
191+
192+
</section>
193+
194+
<!-- /.intro -->
195+
180196
<!-- C usage documentation. -->
181197

182198
<section class="usage">

lib/node_modules/@stdlib/stats/base/dsnanmean/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
// Using view offsets:
4646
> var x0 = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0, NaN, NaN ] );
4747
> var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
48-
> {{alias}}( 4, x1,2 )
48+
> {{alias}}( 4, x1, 2 )
4949
~-0.3333
5050

5151

lib/node_modules/@stdlib/stats/base/dsnanmean/include/stdlib/stats/base/dsnanmean.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2025 The Stdlib Authors.
4+
* Copyright (c) 2020 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/stats/base/dsnanmean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X,
4444
* @return output value
4545
*/
4646
double API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
47-
return stdlib_strided_dsnanmeanpn_ndarray( N, X, strideX, offsetX );
47+
return API_SUFFIX(stdlib_strided_dsnanmeanpn_ndarray)( N, X, strideX, offsetX );
4848
}

0 commit comments

Comments
 (0)