Skip to content

Commit b896343

Browse files
committed
fix the typos
1 parent fb341e0 commit b896343

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyiceberg/table/inspect.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535

3636
class InspectTable:
37-
"""A utility class for inspecting and analysing Iceberge table metadata.
37+
"""A utility class for inspecting and analyzing Iceberg table metadata.
3838
3939
Attributes:
4040
tbl(table): The table object to be inspected.
@@ -133,7 +133,7 @@ def entries(self, snapshot_id: Optional[int] = None) -> "pa.Table":
133133
snapshot_id (Optional[int]): ID of the snapshot to read entries from. If None, the current snapshot is used.
134134
135135
Returns:
136-
pa.Table: A PyArraow table where each row represent a manifest entry with fields:
136+
pa.Table: A PyArrow table where each row represent a manifest entry with fields:
137137
- status (int8): Entry status (e.g., added, existing, deleted).
138138
- snapshot_id (int65): Snapshot ID associated with the entry.
139139
- sequence_number (int64): Sequence number of the entry.
@@ -300,7 +300,7 @@ def refs(self) -> "pa.Table":
300300
"""Generate a PyArrow table containing metadata references from a table.
301301
302302
Returns:
303-
pa.Table: A PyArraow table with the following schema:
303+
pa.Table: A PyArrow table with the following schema:
304304
- name (string): The name of the reference.
305305
- type (dictionary<int32, string>): The type of reference.
306306
- snapshot_id (int64): The snapshot ID that the reference points to.
@@ -422,7 +422,7 @@ def _process_manifest(self, manifest: ManifestFile) -> Dict[Tuple[str, Any], Any
422422
"""Process a manifest file and extract partition-level statistics.
423423
424424
Args:
425-
manifest: The manifest file containing metadata about data files and delete files.
425+
manifest: The manifest file containing metadata about data files and delete files.
426426
427427
Returns:
428428
Dict[Tuple[str, Any], Any]: A dictionary mapping an partition key to a row of aggregated statistics with the following fields:

0 commit comments

Comments
 (0)