Skip to content

Commit

Permalink
updated spelling (#811)
Browse files Browse the repository at this point in the history
uypdated spelling
  • Loading branch information
david-babuschkin-encord authored Dec 3, 2024
1 parent ccf5863 commit 22101f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions encord/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def list_frames(
page_size (Optional[int]): The number of items to fetch per page.
Returns:
Iterator[Tuple[LabelRowV2, List[ProjectDataCollectionInstance]]]: An list of tuples containing label
row and corresponsing frame instances in the collection.
row and corresponding frame instances in the collection.
"""
params = GetCollectionItemsParams(pageSize=page_size)
paged_items = self._client.get_paged_iterator(
Expand Down Expand Up @@ -526,7 +526,7 @@ def list_annotations(
page_size (Optional[int]): The number of items to fetch per page.
Returns:
Iterator[Tuple[LabelRowV2, List[ProjectLabelCollectionInstance]]]: An list of tuples containing label
row and corresponsing label instances in the collection.
row and corresponding label instances in the collection.
"""
params = GetCollectionItemsParams(pageSize=page_size)
paged_items = self._client.get_paged_iterator(
Expand Down

0 comments on commit 22101f3

Please sign in to comment.