Skip to content

Commit 6081bfb

Browse files
Fixes to the docstring
1 parent c1b2426 commit 6081bfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/io/iceberg.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def read_iceberg(
3535
A tuple of strings representing the column names to return in the output
3636
dataframe.
3737
case_sensitive : bool, default True
38-
If True column matching is case sensitive,
38+
If True column matching is case sensitive.
3939
snapshot_id : int, optional
4040
Snapshot ID to time travel to. By default the table will be scanned as of the
4141
current snapshot ID.
@@ -58,9 +58,9 @@ def read_iceberg(
5858
Examples
5959
--------
6060
>>> df = pd.read_iceberg(
61+
... table_identifier="my_table",
6162
... catalog_name="my_catalog",
62-
... catalog_options={"s3.secret-access-key": "my-secret"},
63-
... table_name="my_table",
63+
... catalog_properties={"s3.secret-access-key": "my-secret"},
6464
... row_filter="trip_distance >= 10.0",
6565
... selected_fields=("VendorID", "tpep_pickup_datetime"),
6666
... )

0 commit comments

Comments
 (0)