Skip to content

Commit 3b3d051

Browse files
authored
docs: fix incorrect punctuation in function description for blas/ext/base/dsnansumpw
PR-URL: #3273 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent d8792cd commit 3b3d051

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsnansumpw/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
{{alias}}.ndarray( N, x, strideX, offsetX )
5151
Computes the sum of single-precision floating-point strided array elements,
52-
ignoring `NaN` values, using pairwise summation with extended accumulation,
52+
ignoring `NaN` values, using pairwise summation with extended accumulation
5353
and alternative indexing semantics, and returning an extended precision
5454
result.
5555

lib/node_modules/@stdlib/blas/ext/base/dsnansumpw/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ interface Routine {
4141
( N: number, x: Float32Array, strideX: number ): number;
4242

4343
/**
44-
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation, and alternative indexing semantics, and returning an extended precision result.
44+
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation and alternative indexing semantics, and returning an extended precision result.
4545
*
4646
* @param N - number of indexed elements
4747
* @param x - input array

lib/node_modules/@stdlib/blas/ext/base/dsnansumpw/include/stdlib/blas/ext/base/dsnansumpw.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
double API_SUFFIX(stdlib_strided_dsnansumpw)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX );
3535

3636
/**
37-
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation, and alternative indexing semantics, and returning an extended precision result.
37+
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation and alternative indexing semantics, and returning an extended precision result.
3838
*/
3939
double API_SUFFIX(stdlib_strided_dsnansumpw_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
4040

lib/node_modules/@stdlib/blas/ext/base/dsnansumpw/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ double API_SUFFIX(stdlib_strided_dsnansumpw)( const CBLAS_INT N, const float *X,
4343
}
4444

4545
/**
46-
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation, and alternative indexing semantics, and returning an extended precision result.
46+
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation and alternative indexing semantics, and returning an extended precision result.
4747
*
4848
* ## Method
4949
*

0 commit comments

Comments
 (0)