Skip to content

Commit 858fdf3

Browse files
committed
minor fixup
1 parent a43224e commit 858fdf3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/API_specification/dataframe_api/column_object.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def __and__(self, other: Column | bool) -> Column:
342342
343343
Parameters
344344
----------
345-
other : Column[bool] or bool
345+
other : Column or bool
346346
If Column, must have same length or have length 1.
347347
348348
Returns
@@ -363,12 +363,12 @@ def __or__(self, other: Column | bool) -> Column:
363363
364364
Parameters
365365
----------
366-
other : Column[bool] or Scalar
366+
other : Column or Scalar
367367
If Column, must have same length or have length 1.
368368
369369
Returns
370370
-------
371-
Column[bool]
371+
Column
372372
373373
Raises
374374
------
@@ -515,7 +515,7 @@ def __invert__(self) -> Column:
515515
Raises
516516
------
517517
ValueError
518-
If any of the column's columns is not boolean.
518+
If the column is not boolean.
519519
"""
520520

521521
def any(self, *, skip_nulls: bool = True) -> Column:
@@ -701,7 +701,7 @@ def is_in(self, values: Column | PermissiveColumn) -> Column:
701701
702702
Returns
703703
-------
704-
Column[bool]
704+
Column
705705
"""
706706

707707
def unique_indices(self, *, skip_nulls: bool = True) -> Column:
@@ -710,7 +710,7 @@ def unique_indices(self, *, skip_nulls: bool = True) -> Column:
710710
711711
Returns
712712
-------
713-
Column[int]
713+
Column
714714
Indices corresponding to unique values.
715715
716716
Notes

0 commit comments

Comments
 (0)