Skip to content

Commit ae427cf

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
chore: update documentation
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f44ab56 commit ae427cf

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Indexing is relative to the first index. To introduce an offset, use a
1010
typed array view.
1111

12-
If `N <= 0`, the function returns `0 + 0i`.
12+
If `N <= 0`, the function returns `0`.
1313

1414
Parameters
1515
----------

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { Complex128 } from '@stdlib/types/complex';
2828
*/
2929
interface Routine {
3030
/**
31-
* Calculates the dot product of vectors `x` and `y`.
31+
* Computes the dot product of vectors `x` and `y`.
3232
*
3333
* @param N - number of indexed elements
3434
* @param x - first input array
@@ -49,7 +49,7 @@ interface Routine {
4949
( N: number, x: Complex128Array, strideX: number, y: Complex128Array, strideY: number ): Complex128;
5050

5151
/**
52-
* Calculates the dot product of vectors `x` and `y` using alternative indexing semantics.
52+
* Computes the dot product of vectors `x` and `y` using alternative indexing semantics.
5353
*
5454
* @param N - number of indexed elements
5555
* @param x - first input array

lib/node_modules/@stdlib/blas/base/zdotu/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var muladd = require( '@stdlib/complex/float64/base/mul-add' );
2727
// MAIN //
2828

2929
/**
30-
* Calculates the dot product of two double-precision complex floating-point vectors.
30+
* Computes the dot product of two double-precision complex floating-point vectors.
3131
*
3232
* @param {integer} N - number of indexed elements
3333
* @param {Complex128Array} x - first input array

lib/node_modules/@stdlib/blas/base/zdotu/lib/zdotu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var ndarray = require( './ndarray.js' );
2727
// MAIN //
2828

2929
/**
30-
* Calculates the dot product of two double-precision complex floating-point vectors.
30+
* Computes the dot product of two double-precision complex floating-point vectors.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
3333
* @param {Complex128Array} x - first input array

lib/node_modules/@stdlib/blas/base/zdotu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/base/zdotu",
33
"version": "0.0.0",
4-
"description": "Calculate the dot product of two double-precision complex floating-point vectors.",
4+
"description": "Compute the dot product of two double-precision complex floating-point vectors.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)