Skip to content

Commit 4b3075a

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent a372729 commit 4b3075a

File tree

1 file changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/array/base/at/docs/types

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ declare function at( x: Complex128Array, index: number ): Complex128 | void;
5555
*
5656
* @example
5757
* var Complex128Array = require( '@stdlib/array/complex64' );
58-
*
58+
*
5959
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
6060
*
6161
* var v = at( x, 0 );
@@ -66,7 +66,6 @@ declare function at( x: Complex128Array, index: number ): Complex128 | void;
6666
*
6767
* v = at( x, -2 );
6868
* // returns <Complex64>[ 5.0, 6.0 ]
69-
*
7069
*/
7170
declare function at( x: Complex64Array, index: number ): Complex64 | void;
7271

0 commit comments

Comments
 (0)