Skip to content

Commit 460e1a6

Browse files
Apply suggestions from code review
Co-authored-by: Albert Villanova del Moral <[email protected]>
1 parent f47871a commit 460e1a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/filesystems.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To use an anonymous connection, use `anon=True`.
3131
Otherwise, include your `aws_access_key_id` and `aws_secret_access_key` whenever you are interacting with a private S3 bucket.
3232

3333
```py
34-
>>> storage_options = {"anon": True} # for anynonous connection
34+
>>> storage_options = {"anon": True} # for anonymous connection
3535
# or use your credentials
3636
>>> storage_options = {"key": aws_access_key_id, "secret": aws_secret_access_key} # for private buckets
3737
# or use a botocore session
@@ -138,7 +138,7 @@ Load your own data files (see [how to load local and remote files](./loading#loc
138138
```
139139

140140
It is highly recommended to save the files as compressed Parquet files to optimize I/O by specifying `file_format="parquet"`.
141-
Otherwize the dataset is saved as an uncompressed Arrow file.
141+
Otherwise the dataset is saved as an uncompressed Arrow file.
142142

143143
#### Dask
144144

0 commit comments

Comments
 (0)