Skip to content

Commit c434916

Browse files
authored
Minor verbiage changes to http.jl (#155)
1 parent f436713 commit c434916

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Storage/http.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using OpenSSL: OpenSSL
77
A basic HTTP store without any credentials. The underlying data is supposed to be
88
consolidated and only read operations are supported. This store is compatible to
99
datasets being served through the [xpublish](https://xpublish.readthedocs.io/en/latest/)
10-
python package. In case you experience performance options, one can try to use
10+
python package. In case you experience performance issues, one can try to use
1111
`HTTP.set_default_connection_limit!` to increase the number of concurrent connections.
1212
"""
1313
struct HTTPStore <: AbstractStore
@@ -24,10 +24,10 @@ if r.status >= 300
2424
else
2525
err_msg =
2626
"""Received error code $(r.status) when connecting to $(s.url) with message $(String(r.body)).
27-
This might be an actual error or an indication that the server returns a different error code
28-
than 404 for missing chunks. In the later case you can run
29-
`Zarr.missing_chunk_return_code!(a.storage,$(r.status))` where a is your Zarr array or group to
30-
fix the issue.
27+
This might be an actual error, or an indication that the server returns a different error code
28+
than 404 for missing chunks. In the latter case, you can run
29+
`Zarr.missing_chunk_return_code!(a.storage,$(r.status))` where `a` is your Zarr array or group,
30+
to fix the issue.
3131
"""
3232
throw(ErrorException(err_msg))
3333
end

0 commit comments

Comments
 (0)