diff --git a/lib/node_modules/@stdlib/array/base/slice/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/slice/docs/types/index.d.ts index 9db26c14a8fe..1e78cb10df05 100644 --- a/lib/node_modules/@stdlib/array/base/slice/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/slice/docs/types/index.d.ts @@ -41,10 +41,10 @@ import { Collection, TypedArray, ComplexTypedArray } from '@stdlib/types/array'; * @example * var Complex64Array = require( '@stdlib/array/complex64' ); * -* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] ); +* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] ); * * var out = slice( x, 0, 3 ); -* // returns [ 1.0, 2.0, 3.0 ] +* // returns [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] */ declare function slice( x: T, start: number, end: number ): T; diff --git a/lib/node_modules/@stdlib/array/slice/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/slice/docs/types/index.d.ts index b21660e174a3..b0914e75ebef 100644 --- a/lib/node_modules/@stdlib/array/slice/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/slice/docs/types/index.d.ts @@ -41,10 +41,10 @@ import { Collection, TypedArray, ComplexTypedArray } from '@stdlib/types/array'; * @example * var Complex64Array = require( '@stdlib/array/complex64' ); * -* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] ); +* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] ); * * var out = slice( x ); -* // returns [ 1.0, 2.0, 3.0 ] +* // returns */ declare function slice( x: T, start?: number, end?: number ): T;