From 68242f9b1a2708df8839e5334953a1c6b5171b4b Mon Sep 17 00:00:00 2001 From: tomvothecoder Date: Tue, 30 Apr 2024 10:44:09 -0700 Subject: [PATCH] Fix code markdown formatting --- docs/examples/parallel-computing-with-dask.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/parallel-computing-with-dask.ipynb b/docs/examples/parallel-computing-with-dask.ipynb index ab3549af..d8993a12 100644 --- a/docs/examples/parallel-computing-with-dask.ipynb +++ b/docs/examples/parallel-computing-with-dask.ipynb @@ -4758,8 +4758,8 @@ "source": [ "Now we can trigger the queued up operations in the Dask task graph using `.compute()` or `.load()`\n", "\n", - "- [`.compute()`](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.compute.html#xarray-dataset-compute) - Manually trigger loading and/or computation of this dataset’s data from disk or a remote source into memory and return a new dataset. Unlike load, the original dataset is left unaltered.\n", - "- [`.load()`](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.load.html) - Manually trigger loading and/or computation of this dataset’s data from disk or a remote source into memory and return this dataset. Unlike compute, the original dataset is modified and returned.\n" + "- [.compute()](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.compute.html#xarray-dataset-compute) - Manually trigger loading and/or computation of this dataset’s data from disk or a remote source into memory and return a new dataset. Unlike load, the original dataset is left unaltered.\n", + "- [.load()](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.load.html) - Manually trigger loading and/or computation of this dataset’s data from disk or a remote source into memory and return this dataset. Unlike compute, the original dataset is modified and returned.\n" ] }, {