From bd5422136835af72e5a6bb42a0bd165a4e30bb2f Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Tue, 10 Sep 2024 22:39:58 +0200 Subject: [PATCH] do less --- docs/src/UserGuide/write.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/UserGuide/write.md b/docs/src/UserGuide/write.md index c49463b8..9c21f5d2 100644 --- a/docs/src/UserGuide/write.md +++ b/docs/src/UserGuide/write.md @@ -89,7 +89,7 @@ using YAXArrays, Zarr, FillArrays create the `Zeros` array ````@ansi write -a = YAXArray(Zeros(Union{Missing, Float32}, 20, 10, 5)) +a = YAXArray(Zeros(Union{Missing, Float32}, 5, 4, 5)) ```` Now, save to disk with @@ -143,7 +143,7 @@ ds_array = ds_open["skeleton"] and then we simply update values by indexing them where necessary ````@example write -ds_array[:,:,1] = rand(Float32, 20, 10) # this will update values directly into disk! +ds_array[:,:,1] = rand(Float32, 5, 4) # this will update values directly into disk! ```` we can verify is this working by loading again directly from disk