Skip to content

Commit

Permalink
Fix doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
danepitkin committed Jan 30, 2024
1 parent 4cb9d4a commit f9352e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pyarrow/types.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -4611,7 +4611,7 @@ cpdef ListViewType list_view(value_type):
>>> import pyarrow as pa
>>> pa.list_view(pa.string())
ListViewType(list<item: string>)
ListViewType(list_view<item: string>)
"""
cdef:
Field _field
Expand Down Expand Up @@ -4650,7 +4650,7 @@ cpdef LargeListViewType large_list_view(value_type):
>>> import pyarrow as pa
>>> pa.large_list_view(pa.int8())
LargeListViewType(large_list<item: int8>)
LargeListViewType(large_list_view<item: int8>)
"""
cdef:
Field _field
Expand Down

0 comments on commit f9352e8

Please sign in to comment.