Skip to content

Commit ffa9822

Browse files
committed
Fix cachingstore.rst errors
1 parent f51fdb8 commit ffa9822

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/user-guide/cachingstore.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ is a significant factor. You can use different store types for source and cache:
8686
>>> # Create a remote store (S3 example) - for demonstration only
8787
>>> remote_store = FsspecStore.from_url('s3://bucket/data.zarr', storage_options={'anon': True}) # doctest: +SKIP
8888
>>>
89-
>>> # Use a local store for persistent caching
89+
>>> # Use a local store for persistent caching
9090
>>> local_cache_store = LocalStore('cache_data') # doctest: +SKIP
9191
>>>
9292
>>> # Create cached store with persistent local cache
@@ -96,7 +96,7 @@ is a significant factor. You can use different store types for source and cache:
9696
... max_size=512*1024*1024 # 512MB cache
9797
... )
9898
>>>
99-
>>> # Open array through cached store
99+
>>> # Open array through cached store
100100
>>> z = zarr.open(cached_store) # doctest: +SKIP
101101

102102
The first access to any chunk will be slow (network retrieval), but subsequent accesses

0 commit comments

Comments
 (0)