Skip to content

Commit 8f6c511

Browse files
committed
docs: remove trailing semicolons
--- 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: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - 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 09ffc2c commit 8f6c511

File tree

1 file changed

+8
-8
lines changed
  • lib/node_modules/@stdlib/blas/base/wasm/cswap/docs/types

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,8 @@ interface Routine extends ModuleWrapper {
333333
*
334334
* // Perform operation:
335335
* cswap.main( x.length, x, 1, y, 1 );
336-
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
337-
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
336+
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
337+
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
338338
*/
339339
main( N: number, x: Complex64Array, strideX: number, y: Complex64Array, strideY: number ): Complex64Array;
340340

@@ -358,8 +358,8 @@ interface Routine extends ModuleWrapper {
358358
*
359359
* // Perform operation:
360360
* cswap.ndarray( x.length, x, 1, 0, y, 1, 0 );
361-
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
362-
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
361+
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
362+
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
363363
*/
364364
ndarray( N: number, x: Complex64Array, strideX: number, offsetX: number, y: Complex64Array, strideY: number, offsetY: number ): Complex64Array;
365365

@@ -450,8 +450,8 @@ interface Routine extends ModuleWrapper {
450450
*
451451
* // Perform operation:
452452
* cswap.main( x.length, x, -1, y, 1 );
453-
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
454-
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
453+
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
454+
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
455455
*
456456
* @example
457457
* var Complex64Array = require( '@stdlib/array/complex64' );
@@ -461,8 +461,8 @@ interface Routine extends ModuleWrapper {
461461
*
462462
* // Perform operation:
463463
* cswap.ndarray( x.length, x, 1, 0, y, 1, 0 );
464-
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
465-
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
464+
* // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
465+
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
466466
*/
467467
declare var cswap: Routine;
468468

0 commit comments

Comments
 (0)