Skip to content

Commit 37d7561

Browse files
committed
Fix heading
1 parent 26f7440 commit 37d7561

File tree

38 files changed

+38
-38
lines changed

38 files changed

+38
-38
lines changed

lib/node_modules/@stdlib/blas/ext/base/dasumpw/lib/dasumpw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var sum = require( './ndarray.js' );
2929
/**
3030
* Computes the sum of absolute values (L1 norm) of double-precision floating-point strided array elements using pairwise summation.
3131
*
32-
* ## Methods
32+
* ## Method
3333
*
3434
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3535
*

lib/node_modules/@stdlib/blas/ext/base/dasumpw/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var BLOCKSIZE = 128;
3535
/**
3636
* Computes the sum of absolute values (L1 norm) of double-precision floating-point strided array elements using pairwise summation.
3737
*
38-
* ## Methods
38+
* ## Method
3939
*
4040
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
4141
*

lib/node_modules/@stdlib/blas/ext/base/dasumpw/src/dasumpw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Computes the sum of absolute values (L1 norm) of double-precision floating-point strided array elements using pairwise summation.
2828
*
29-
* ## Methods
29+
* ## Method
3030
*
3131
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3232
*

lib/node_modules/@stdlib/blas/ext/base/dnansumpw/lib/dnansumpw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var sum = require( './ndarray.js' );
2929
/**
3030
* Computes the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.
3131
*
32-
* ## Methods
32+
* ## Method
3333
*
3434
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3535
*

lib/node_modules/@stdlib/blas/ext/base/dnansumpw/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var BLOCKSIZE = 128;
3535
/**
3636
* Computes the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.
3737
*
38-
* ## Methods
38+
* ## Method
3939
*
4040
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
4141
*

lib/node_modules/@stdlib/blas/ext/base/dnansumpw/src/dnansumpw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Computes the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.
2828
*
29-
* ## Methods
29+
* ## Method
3030
*
3131
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3232
*

lib/node_modules/@stdlib/blas/ext/base/dsnansum/lib/dsnansum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var sum = require( './ndarray.js' );
2929
/**
3030
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using extended accumulation, and returning an extended precision result.
3131
*
32-
* ## Methods
32+
* ## Method
3333
*
3434
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3535
*

lib/node_modules/@stdlib/blas/ext/base/dsnansum/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var BLOCKSIZE = 128;
3535
/**
3636
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using extended accumulation, and returning an extended precision result.
3737
*
38-
* ## Methods
38+
* ## Method
3939
*
4040
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
4141
*

lib/node_modules/@stdlib/blas/ext/base/dsnansum/src/dsnansum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using extended accumulation, and returning an extended precision result.
2828
*
29-
* ## Methods
29+
* ## Method
3030
*
3131
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3232
*

lib/node_modules/@stdlib/blas/ext/base/dssum/lib/dssum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var sum = require( './ndarray.js' );
2828
/**
2929
* Computes the sum of single-precision floating-point strided array elements using extended accumulation and returning an extended precision result.
3030
*
31-
* ## Methods
31+
* ## Method
3232
*
3333
* - This implementation uses pairwise summation, which accrues rounding error `O(log2 N)` instead of `O(N)`. The recursion depth is also `O(log2 N)`.
3434
*

0 commit comments

Comments
 (0)