Skip to content

Commit

Permalink
Fix code markdown formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder committed Apr 30, 2024
1 parent 7736ea9 commit 68242f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/parallel-computing-with-dask.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
{
Expand Down

0 comments on commit 68242f9

Please sign in to comment.