Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 9, 2023
1 parent a2ed4c2 commit af4fcbd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ interface Namespace {
* @param strideX - `x` stride length
* @param y - second input array
* @param strideY - `y` stride length
* @returns dot product of `x` and `y`
* @returns dot product
*
* @example
* var Float64Array = require( `@stdlib/array/float64` );
Expand Down Expand Up @@ -319,7 +319,7 @@ interface Namespace {
* @param alpha - constant
* @param x - input array
* @param stride - stride length
* @returns `x`
* @returns input array
*
* @example
* var Float64Array = require( `@stdlib/array/float64` );
Expand Down Expand Up @@ -347,7 +347,7 @@ interface Namespace {
* @param strideX - `x` stride length
* @param y - second input array
* @param strideY - `y` stride length
* @returns dot product of `x` and `y`
* @returns dot product
*
* @example
* var Float32Array = require( `@stdlib/array/float32` );
Expand Down Expand Up @@ -430,9 +430,9 @@ interface Namespace {
* @param alpha - constant
* @param x - input array
* @param strideX - `x` stride length
* @param y - destination array
* @param y - output array
* @param strideY - `y` stride length
* @returns `y`
* @returns output array
*
* @example
* var x = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
Expand All @@ -456,9 +456,9 @@ interface Namespace {
* @param N - number of indexed elements
* @param x - input array
* @param strideX - `x` stride length
* @param y - destination array
* @param y - output array
* @param strideY - `y` stride length
* @returns `y`
* @returns output array
*
* @example
* var x = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
Expand All @@ -484,7 +484,7 @@ interface Namespace {
* @param strideX - `x` stride length
* @param y - second input array
* @param strideY - `y` stride length
* @returns dot product of `x` and `y`
* @returns dot product
*
* @example
* var x = [ 4.0, 2.0, -3.0, 5.0, -1.0 ];
Expand Down Expand Up @@ -531,7 +531,7 @@ interface Namespace {
* @param alpha - constant
* @param x - input array
* @param stride - stride length
* @returns `x`
* @returns input array
*
* @example
* var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ];
Expand Down Expand Up @@ -779,7 +779,7 @@ interface Namespace {
* @param alpha - constant
* @param x - input array
* @param stride - stride length
* @returns `x`
* @returns input array
*
* @example
* var Float32Array = require( `@stdlib/array/float32` );
Expand Down

0 comments on commit af4fcbd

Please sign in to comment.