@@ -839,7 +839,7 @@ apply to node names:
839839* must not be a string composed only of period characters, e.g. ``"." `` or ``".." ``
840840* must not start with the reserved prefix ``"__" ``
841841
842- To ensure consistent behavior across different storage systems and programming
842+ To ensure consistent behaviour across different storage systems and programming
843843languages, we recommend users to only use characters in the sets ``a-z ``,
844844``A-Z ``, ``0-9 ``, ``- ``, ``_ ``, ``. ``.
845845
@@ -1223,7 +1223,7 @@ codec specification must declare the codec identifier, and describe
12231223(or cite documents that describe) the encoding and decoding algorithms
12241224and the format of the encoded data.
12251225
1226- A codec may have configuration parameters which modify the behavior
1226+ A codec may have configuration parameters which modify the behaviour
12271227of the codec in some way. For example, a compression codec may have a
12281228compression level parameter, which is an integer that affects the
12291229resulting compression ratio of the data. Configuration parameters must
@@ -1373,7 +1373,7 @@ operations:
13731373 For example, if a store contains the keys "a/b", "a/c/d" and
13741374 "e/f/g", then ``list_prefix("a/") `` would return "a/b" and "a/c/d".
13751375
1376- Note: the behavior of ``list_prefix `` is undefined if ``prefix `` does not end
1376+ Note: the behaviour of ``list_prefix `` is undefined if ``prefix `` does not end
13771377 with a trailing slash ``/ `` and the store can assume there is at least one key
13781378 that starts with ``prefix ``.
13791379
@@ -1593,7 +1593,7 @@ A storage transformer serves the same `abstract store interface`_ as the store_.
15931593However, it should not persistently store any information necessary to restore the original data,
15941594but instead propagates this to the next storage transformer or the final store.
15951595From the perspective of an array or a previous stage transformer, both store and storage transformer follow the same
1596- protocol and can be interchanged regarding the protocol. The behavior can still be different,
1596+ protocol and can be interchanged regarding the protocol. The behaviour can still be different,
15971597e.g. requests may be cached or the form of the underlying data can change.
15981598
15991599Storage transformers may be stacked to combine different functionalities:
@@ -1687,7 +1687,7 @@ was not deleted when shrinking the array, this data will be shown by default.
16871687The latter case should be signalled to the user appropriately. An implementation
16881688can also allow the user to choose to delete previous data explicitly when
16891689increasing the array (by writing the fill value into partial chunks and deleting
1690- others), but this should not be the default behavior .
1690+ others), but this should not be the default behaviour .
16911691
16921692
16931693Comparison with Zarr v2
@@ -1745,7 +1745,7 @@ Changes after Provisional Acceptance
17451745Draft Changes
17461746--------------------------
17471747
1748- - Removed `extensions ` field and clarified extension point behavior , changing the config format of
1748+ - Removed `extensions ` field and clarified extension point behaviour , changing the config format of
17491749 data-types, chunk-grid, storage-transformers and codecs. `PR #204
17501750 <https://github.com/zarr-developers/zarr-specs/pull/204> `_
17511751- Changed `format_version ` to the int ``3 ``, added key ``node_type `` to group and array metadata. `PR #204
0 commit comments