From 84dd29c05bacc8f239a0c8f7514d8837b52284e7 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Mon, 18 Mar 2024 09:19:06 +0100 Subject: [PATCH] Fix typo (#48) Signed-off-by: David Brochart --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5b45ba..bafd6ce 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ That's it! ## Why does this work? Underneath Xarray, Dask, and Pandas, there are NumPy arrays. These are paged in -chucks and represented contiguously in memory. It is only a matter of metadata +chuncks and represented contiguously in memory. It is only a matter of metadata that breaks them up into ndarrays. `to_dataframe()` just changes this metadata (via a `ravel()`/`reshape()`), back into a column amenable to a DataFrame.