Skip to content

Commit 02bef66

Browse files
committed
DOC: Fix warning directive and adjust BooleanDtype docstring attributes (fixes #61939)
1 parent aa727c6 commit 02bef66

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

pandas/core/arrays/boolean.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,21 @@ class BooleanDtype(BaseMaskedDtype):
5050
5151
.. warning::
5252
53-
BooleanDtype is considered experimental. The implementation and
54-
parts of the API may change without warning.
53+
BooleanDtype is considered experimental. The implementation and
54+
parts of the API may change without warning.
5555
5656
Attributes
5757
----------
5858
name : str
5959
String identifying the dtype ('boolean').
60-
na_value : pandas.NA
61-
The scalar missing value used for this dtype.
6260
kind : str
6361
The kind of data ('b' for boolean).
6462
numpy_dtype : numpy.dtype
6563
The underlying NumPy dtype used ('bool').
6664
type : type
6765
The scalar type for elements of this dtype (np.bool_).
6866
67+
6968
See Also
7069
--------
7170
BooleanArray : Extension array for boolean data with missing values.
@@ -74,7 +73,7 @@ class BooleanDtype(BaseMaskedDtype):
7473
Series : One-dimensional ndarray with axis labels.
7574
DataFrame : Two-dimensional, size-mutable, tabular data.
7675
77-
Examples
76+
Examples
7877
--------
7978
Create a Series with BooleanDtype:
8079

0 commit comments

Comments
 (0)