Skip to content

Commit 14c94c0

Browse files
committed
markdown codeblock syntax needs to be valid
1 parent e4061f2 commit 14c94c0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

advanced/apply_ufunc/complex-output-numpy.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@
336336
"\n",
337337
"Try applying the minmax function to a 3d air temperature dataset \n",
338338
"```python\n",
339-
"air3d = xr.tutorial.load_dataset(\"air_temperature\").air)\n",
339+
"air3d = xr.tutorial.load_dataset(\"air_temperature\").air\n",
340340
"``` \n",
341341
"Your goal is to have a minimum and maximum value of temperature across all latitudes for a given time and longitude.\n",
342342
"\n",

advanced/backends/1.Backend_without_Lazy_Loading.ipynb

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
"\n",
4343
"```python\n",
4444
"setuptools.setup(\n",
45-
" ...\n",
4645
" entry_points={\n",
4746
" 'xarray.backends': ['engine_name=package.module:my_backendentrypoint'],\n",
4847
" },\n",
@@ -51,7 +50,7 @@
5150
"or pass it in `xr.open_dataset`:\n",
5251
"\n",
5352
"```python\n",
54-
"xr.open_dataset(..., engine=MyBackendEntrypoint)\n",
53+
"xr.open_dataset(filename, engine=MyBackendEntrypoint)\n",
5554
"```"
5655
]
5756
},

0 commit comments

Comments
 (0)