Skip to content

Commit dd27077

Browse files
authored
Merge pull request #218 from normanrz/patch-1
Fix data_type example
2 parents 813839f + b517d94 commit dd27077

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/v3/core/v3.0.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ mandatory names:
851851

852852
The data type of the Zarr array. If the data type is defined in
853853
this specification, then the value must be the data type
854-
identifier provided as a string. For example, ``"<f8"`` for
854+
identifier provided as a string. For example, ``"float64"`` for
855855
little-endian 64-bit floating point number.
856856

857857
The ``data_type`` value is an extension point and may be defined by a data
@@ -1002,7 +1002,7 @@ compressed using gzip compression prior to storage::
10021002
"node_type": "array",
10031003
"shape": [10000, 1000],
10041004
"dimension_names": ["rows", "columns"],
1005-
"data_type": "<f8",
1005+
"data_type": "float64",
10061006
"chunk_grid": {
10071007
"name": "regular",
10081008
"configuration": {
@@ -1037,7 +1037,7 @@ above, but using a (currently made up) extension data type::
10371037
"configuration": {
10381038
"unit": "ns"
10391039
},
1040-
"fallback": "<i8"
1040+
"fallback": "int64"
10411041
},
10421042
"chunk_grid": {
10431043
"name": "regular",

0 commit comments

Comments
 (0)