You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
-[`7321e29`](https://github.com/stdlib-js/stdlib/commit/7321e294d995d496b35f24f253055190ae6a78d5) - **refactor:** use base assertion utility _(by Athan Reines)_
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -269,11 +269,11 @@ var dtype = arr.dtype;
269
269
270
270
#### ndarray.prototype.flags
271
271
272
-
Meta information, such as information concerning the memory layout of the array. The returned `object` has the following properties:
272
+
Meta information, such as information concerning the memory layout of the array. The returned object has the following properties:
273
273
274
-
-**ROW_MAJOR_CONTIGUOUS**: `boolean` indicating if an array is row-major contiguous.
275
-
-**COLUMN_MAJOR_CONTIGUOUS**: `boolean` indicating if an array is column-major contiguous.
276
-
-**READONLY**: `boolean` indicating if an array is **read-only**.
274
+
-**ROW_MAJOR_CONTIGUOUS**: boolean indicating if an array is row-major contiguous.
275
+
-**COLUMN_MAJOR_CONTIGUOUS**: boolean indicating if an array is column-major contiguous.
276
+
-**READONLY**: boolean indicating if an array is **read-only**.
277
277
278
278
An array is contiguous if (1) an array is compatible with being stored in a single memory segment and (2) each array element is adjacent to the next array element. Note that an array can be both row-major contiguous and column-major contiguous at the same time (e.g., if an array is a 1-dimensional ndarray with `strides = [1]`).
279
279
@@ -571,7 +571,7 @@ The method does **not** serialize data outside of the buffer region defined by t
571
571
572
572
#### ndarray.prototype.toJSON()
573
573
574
-
Serializes an `ndarray` as a [JSON][json]`object`. `JSON.stringify()` implicitly calls this method when stringifying an `ndarray` instance.
574
+
Serializes an `ndarray` as a [JSON][json] object. `JSON.stringify()` implicitly calls this method when stringifying an `ndarray` instance.
0 commit comments