Skip to content

Commit e8a9a48

Browse files
committed
Fix type annotation
1 parent b836a1c commit e8a9a48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/utils/append/docs/types

lib/node_modules/@stdlib/utils/append/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { Collection } from '@stdlib/types/object';
4242
* arr = append( arr, [ 6.0, 7.0 ] );
4343
* // returns <Float64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 ]
4444
*/
45-
declare function append( collection1: Collection, collection2 ): Collection;
45+
declare function append( collection1: Collection, collection2: Collection ): Collection; // tslint-disable-line max-line-length
4646

4747

4848
// EXPORTS //

0 commit comments

Comments
 (0)