Skip to content

Commit 68ebfa4

Browse files
committed
Fix descriptions
1 parent f3c3de7 commit 68ebfa4

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types

lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types/index.d.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import { ndarray, typedndarray, float64ndarray, float32ndarray, int32ndarray, int16ndarray, int8ndarray, uint32ndarray, uint16ndarray, uint8ndarray, uint8cndarray, complex128ndarray, complex64ndarray, DataType } from '@stdlib/types/ndarray';
2424

2525
/**
26-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
26+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
2727
*
2828
* @param x - input array
2929
* @returns zero-filled array
@@ -52,7 +52,7 @@ import { ndarray, typedndarray, float64ndarray, float32ndarray, int32ndarray, in
5252
declare function zerosLike( x: float64ndarray ): float64ndarray;
5353

5454
/**
55-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
55+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
5656
*
5757
* @param x - input array
5858
* @returns zero-filled array
@@ -81,7 +81,7 @@ declare function zerosLike( x: float64ndarray ): float64ndarray;
8181
declare function zerosLike( x: float32ndarray ): float32ndarray;
8282

8383
/**
84-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
84+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
8585
*
8686
* @param x - input array
8787
* @returns zero-filled array
@@ -110,7 +110,7 @@ declare function zerosLike( x: float32ndarray ): float32ndarray;
110110
declare function zerosLike( x: complex128ndarray ): complex128ndarray;
111111

112112
/**
113-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
113+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
114114
*
115115
* @param x - input array
116116
* @returns zero-filled array
@@ -139,7 +139,7 @@ declare function zerosLike( x: complex128ndarray ): complex128ndarray;
139139
declare function zerosLike( x: complex64ndarray ): complex64ndarray;
140140

141141
/**
142-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
142+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
143143
*
144144
* @param x - input array
145145
* @returns zero-filled array
@@ -168,7 +168,7 @@ declare function zerosLike( x: complex64ndarray ): complex64ndarray;
168168
declare function zerosLike( x: int32ndarray ): int32ndarray;
169169

170170
/**
171-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
171+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
172172
*
173173
* @param x - input array
174174
* @returns zero-filled array
@@ -197,7 +197,7 @@ declare function zerosLike( x: int32ndarray ): int32ndarray;
197197
declare function zerosLike( x: int16ndarray ): int16ndarray;
198198

199199
/**
200-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
200+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
201201
*
202202
* @param x - input array
203203
* @returns zero-filled array
@@ -226,7 +226,7 @@ declare function zerosLike( x: int16ndarray ): int16ndarray;
226226
declare function zerosLike( x: int8ndarray ): int8ndarray;
227227

228228
/**
229-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
229+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
230230
*
231231
* @param x - input array
232232
* @returns zero-filled array
@@ -255,7 +255,7 @@ declare function zerosLike( x: int8ndarray ): int8ndarray;
255255
declare function zerosLike( x: uint32ndarray ): uint32ndarray;
256256

257257
/**
258-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
258+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
259259
*
260260
* @param x - input array
261261
* @returns zero-filled array
@@ -284,7 +284,7 @@ declare function zerosLike( x: uint32ndarray ): uint32ndarray;
284284
declare function zerosLike( x: uint16ndarray ): uint16ndarray;
285285

286286
/**
287-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
287+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
288288
*
289289
* @param x - input array
290290
* @returns zero-filled array
@@ -313,7 +313,7 @@ declare function zerosLike( x: uint16ndarray ): uint16ndarray;
313313
declare function zerosLike( x: uint8ndarray ): uint8ndarray;
314314

315315
/**
316-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
316+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
317317
*
318318
* @param x - input array
319319
* @returns zero-filled array
@@ -342,7 +342,7 @@ declare function zerosLike( x: uint8ndarray ): uint8ndarray;
342342
declare function zerosLike( x: uint8cndarray ): uint8cndarray;
343343

344344
/**
345-
* Creates a zero-filled array the same shape and data type as a provided input ndarray.
345+
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
346346
*
347347
* @param x - input array
348348
* @returns zero-filled array

0 commit comments

Comments
 (0)