From 837a418bc95940fb91b988ec90428bde5ac7d416 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 6 Dec 2024 10:31:44 -0500 Subject: [PATCH] Correct example endianness reference The examples references a "configuration below" as little endian, but the configuration contains: ```json "codecs": [{ "name": "bytes", "configuration": { "endian": "big" } }], ``` --- docs/v3/core/v3.0.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/v3/core/v3.0.rst b/docs/v3/core/v3.0.rst index bd0db8c..92c227d 100644 --- a/docs/v3/core/v3.0.rst +++ b/docs/v3/core/v3.0.rst @@ -720,7 +720,7 @@ compressed using gzip compression prior to storage:: "codecs": [{ "name": "bytes", "configuration": { - "endian": "big" + "endian": "little" } }], "fill_value": "NaN",