Skip to content

Commit aea665e

Browse files
committed
Update copy
1 parent d32c65f commit aea665e

File tree

45 files changed

+45
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+45
-45
lines changed

lib/node_modules/@stdlib/blas/base/dasum/README.md

Lines changed: 1 addition & 1 deletion

lib/node_modules/@stdlib/blas/base/dasum/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: Float64Array, stride: number ): number;
4242

4343
/**
44-
* Computes the sum of the absolute values, with alternative indexing semantics.
44+
* Computes the sum of the absolute values using alternative indexing semantics.
4545
*
4646
* @param N - number of values to sum
4747
* @param x - input array

lib/node_modules/@stdlib/blas/base/daxpy/README.md

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ interface Routine {
4545
( N: number, alpha: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): Float64Array; // tslint:disable-line:max-line-length
4646

4747
/**
48-
* Multiplies `x` by a constant `alpha` and adds the result to `y`, with alternative indexing semantics.
48+
* Multiplies `x` by a constant `alpha` and adds the result to `y` using alternative indexing semantics.
4949
*
5050
* @param N - number of indexed elements
5151
* @param alpha - constant

lib/node_modules/@stdlib/blas/base/dcopy/README.md

Lines changed: 1 addition & 1 deletion

lib/node_modules/@stdlib/blas/base/dcopy/docs/repl.txt

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

6161

6262
{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
63-
Copies values from `x` into `y`, with alternative indexing semantics.
63+
Copies values from `x` into `y` using alternative indexing semantics.
6464

6565
While typed array views mandate a view offset based on the underlying
6666
buffer, the `offset` parameters support indexing semantics based on starting

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ interface Routine {
4444
( N: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): Float64Array; // tslint:disable-line:max-line-length
4545

4646
/**
47-
* Copies values from `x` into `y`, with alternative indexing semantics.
47+
* Copies values from `x` into `y` using alternative indexing semantics.
4848
*
4949
* @param N - number of values to copy
5050
* @param x - input array

lib/node_modules/@stdlib/blas/base/ddot/README.md

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ interface Routine {
4444
( N: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): number; // tslint:disable-line:max-line-length
4545

4646
/**
47-
* Computes the dot product of `x` and `y`, with alternative indexing semantics.
47+
* Computes the dot product of `x` and `y` using alternative indexing semantics.
4848
*
4949
* @param N - number of values over which to compute the dot product
5050
* @param x - first input array

lib/node_modules/@stdlib/blas/base/dscal/README.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)