Skip to content

Commit 03fdd9b

Browse files
authored
typos in comments and docs (#1761)
* typos in comments and docs * noqa: E501 for docstring * use python REPL style multiline
1 parent dedb1c2 commit 03fdd9b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

awswrangler/s3/_read_parquet.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,14 +708,17 @@ def read_parquet(
708708
Reading in chunks (Chunk by file)
709709
710710
>>> import awswrangler as wr
711-
>>> dfs = wr.s3.read_parquet(path=['s3://bucket/filename0.csv', 's3://bucket/filename1.csv'], chunked=True)
711+
>>> dfs = wr.s3.read_parquet(path=['s3://bucket/filename0.parquet', 's3://bucket/filename1.parquet'], chunked=True)
712712
>>> for df in dfs:
713713
>>> print(df) # Smaller Pandas DataFrame
714714
715715
Reading in chunks (Chunk by 1MM rows)
716716
717717
>>> import awswrangler as wr
718-
>>> dfs = wr.s3.read_parquet(path=['s3://bucket/filename0.csv', 's3://bucket/filename1.csv'], chunked=1_000_000)
718+
>>> dfs = wr.s3.read_parquet(
719+
... path=['s3://bucket/filename0.parquet', 's3://bucket/filename1.parquet'],
720+
... chunked=1_000_000
721+
... )
719722
>>> for df in dfs:
720723
>>> print(df) # 1MM Pandas DataFrame
721724

0 commit comments

Comments
 (0)