Skip to content

Commit 74823a0

Browse files
authored
DOC PR09 Add . in the description parameter (#32001)
1 parent b41911e commit 74823a0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

pandas/_testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ def assert_extension_array_equal(
10141014
Parameters
10151015
----------
10161016
left, right : ExtensionArray
1017-
The two arrays to compare
1017+
The two arrays to compare.
10181018
check_dtype : bool, default True
10191019
Whether to check if the ExtensionArray dtypes are identical.
10201020
check_less_precise : bool or int, default False

pandas/core/indexers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def check_array_indexer(array: AnyArrayLike, indexer: Any) -> Any:
296296
indexer : array-like or list-like
297297
The array-like that's used to index. List-like input that is not yet
298298
a numpy array or an ExtensionArray is converted to one. Other input
299-
types are passed through as is
299+
types are passed through as is.
300300
301301
Returns
302302
-------

pandas/core/indexes/period.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class PeriodIndex(DatetimeIndexOpsMixin, Int64Index):
8585
copy : bool
8686
Make a copy of input ndarray.
8787
freq : str or period object, optional
88-
One of pandas period strings or corresponding objects
88+
One of pandas period strings or corresponding objects.
8989
year : int, array, or Series, default None
9090
month : int, array, or Series, default None
9191
quarter : int, array, or Series, default None

pandas/io/formats/style.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class Styler:
8585
number and ``<num_col>`` is the column number.
8686
na_rep : str, optional
8787
Representation for missing values.
88-
If ``na_rep`` is None, no special formatting is applied
88+
If ``na_rep`` is None, no special formatting is applied.
8989
9090
.. versionadded:: 1.0.0
9191
@@ -446,7 +446,7 @@ def format(self, formatter, subset=None, na_rep: Optional[str] = None) -> "Style
446446
Parameters
447447
----------
448448
formatter : str, callable, dict or None
449-
If ``formatter`` is None, the default formatter is used
449+
If ``formatter`` is None, the default formatter is used.
450450
subset : IndexSlice
451451
An argument to ``DataFrame.loc`` that restricts which elements
452452
``formatter`` is applied to.

pandas/io/sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def read_sql(
356356
sql : str or SQLAlchemy Selectable (select or text object)
357357
SQL query to be executed or a table name.
358358
con : SQLAlchemy connectable (engine/connection) or database str URI
359-
or DBAPI2 connection (fallback mode)'
359+
or DBAPI2 connection (fallback mode).
360360
361361
Using SQLAlchemy makes it possible to use any DB supported by that
362362
library. If a DBAPI2 object, only sqlite3 is supported. The user is responsible

0 commit comments

Comments
 (0)