Skip to content

Commit ccbf26a

Browse files
committed
test: fix descriptions
1 parent 547f610 commit ccbf26a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,7 @@ interface Complex128ArrayConstructor {
17441744
/**
17451745
* Creates a new 128-bit complex number array from a variable number of arguments.
17461746
*
1747-
* @param element - array elements
1747+
* @param elements - array elements
17481748
* @returns 128-bit complex number array
17491749
*
17501750
* @example

lib/node_modules/@stdlib/array/complex128/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ tape( 'the constructor returns an instance having a `length` property for return
512512
}
513513
});
514514

515-
tape( 'the constructor throws an error if provided an ArrayBuffer which is a multiple of 16', function test( t ) {
515+
tape( 'the constructor throws an error if provided an ArrayBuffer which is not a multiple of 16', function test( t ) {
516516
var values;
517517
var i;
518518

lib/node_modules/@stdlib/array/complex64/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1746,7 +1746,7 @@ interface Complex64ArrayConstructor {
17461746
/**
17471747
* Creates a new 64-bit complex number array from a variable number of arguments.
17481748
*
1749-
* @param element - array elements
1749+
* @param elements - array elements
17501750
* @returns 64-bit complex number array
17511751
*
17521752
* @example

lib/node_modules/@stdlib/array/complex64/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ tape( 'the constructor returns an instance having a `length` property for return
512512
}
513513
});
514514

515-
tape( 'the constructor throws an error if provided an ArrayBuffer which is a multiple of 8', function test( t ) {
515+
tape( 'the constructor throws an error if provided an ArrayBuffer which is not a multiple of 8', function test( t ) {
516516
var values;
517517
var i;
518518

0 commit comments

Comments
 (0)