Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed May 23, 2024
1 parent 66fd11d commit 985cd0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/using/code/open_complex.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"ensemble": [
"/path/to/dataset1.zarr",
{"dataset": "dataset_name", "end": 2010},
{"dataset": "s3://path/to/dataset3.zarr", "begin": 2000, "end": 2010},
{"dataset": "s3://path/to/dataset3.zarr", "start": 2000, "end": 2010},
],
"frequency": "24h",
},
Expand Down
2 changes: 1 addition & 1 deletion docs/using/code/open_other.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

ds1 = open_dataset("/path/to/dataset.zarr")

ds2 = open_dataset(ds1, frequency="24h", begin="2000", end="2010")
ds2 = open_dataset(ds1, frequency="24h", start="2000", end="2010")

0 comments on commit 985cd0c

Please sign in to comment.