Skip to content

Commit 6ff05a5

Browse files
committed
DOC: Fix title capitalization in documentation file
1 parent 8303af3 commit 6ff05a5

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

doc/source/whatsnew/v0.12.0.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ API changes
133133
to be inserted if ``True``, default is ``False`` (same as prior to 0.12) (:issue:`3679`)
134134
- Implement ``__nonzero__`` for ``NDFrame`` objects (:issue:`3691`, :issue:`3696`)
135135

136-
- IO api
136+
- IO API
137137

138-
- added top-level function ``read_excel`` to replace the following,
138+
- Added top-level function ``read_excel`` to replace the following,
139139
The original API is deprecated and will be removed in a future version
140140

141141
.. code-block:: python
@@ -153,7 +153,7 @@ API changes
153153
154154
pd.read_excel("path_to_file.xls", "Sheet1", index_col=None, na_values=["NA"])
155155
156-
- added top-level function ``read_sql`` that is equivalent to the following
156+
- Added top-level function ``read_sql`` that is equivalent to the following
157157

158158
.. code-block:: python
159159
@@ -482,11 +482,11 @@ Bug fixes
482482

483483
- ``HDFStore``
484484

485-
- will retain index attributes (freq,tz,name) on recreation (:issue:`3499`)
486-
- will warn with a ``AttributeConflictWarning`` if you are attempting to append
485+
- Will retain index attributes (freq,tz,name) on recreation (:issue:`3499`)
486+
- Will warn with a ``AttributeConflictWarning`` if you are attempting to append
487487
an index with a different frequency than the existing, or attempting
488488
to append an index with a different name than the existing
489-
- support datelike columns with a timezone as data_columns (:issue:`2852`)
489+
- Support datelike columns with a timezone as data_columns (:issue:`2852`)
490490

491491
- Non-unique index support clarified (:issue:`3468`).
492492

doc/source/whatsnew/v0.25.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ with :attr:`numpy.nan` in the case of an empty :class:`DataFrame` (:issue:`26397
551551
``__str__`` methods now call ``__repr__`` rather than vice versa
552552
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
553553

554-
pandas has until now mostly defined string representations in a pandas objects'
554+
Pandas has until now mostly defined string representations in a pandas objects'
555555
``__str__``/``__unicode__``/``__bytes__`` methods, and called ``__str__`` from the ``__repr__``
556556
method, if a specific ``__repr__`` method is not found. This is not needed for Python3.
557557
In pandas 0.25, the string representations of pandas objects are now generally

doc/source/whatsnew/v1.2.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ By default, duplicates continue to be allowed.
6464
label
6565
a [0, 1]
6666
67-
pandas will propagate the ``allows_duplicate_labels`` property through many operations.
67+
Pandas will propagate the ``allows_duplicate_labels`` property through many operations.
6868

6969
.. code-block:: ipython
7070

doc/source/whatsnew/v3.0.0.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Enhancements
1616

1717
.. _whatsnew_300.enhancements.enhancement1:
1818

19-
enhancement1
19+
Enhancement1
2020
^^^^^^^^^^^^
2121

2222
.. _whatsnew_300.enhancements.enhancement2:
2323

24-
enhancement2
24+
Enhancement2
2525
^^^^^^^^^^^^
2626

2727
.. _whatsnew_300.enhancements.other:
@@ -269,7 +269,7 @@ This change also applies to :meth:`.DataFrameGroupBy.value_counts`. Here, there
269269
Increased minimum version for Python
270270
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
271271

272-
pandas 3.0.0 supports Python 3.10 and higher.
272+
Pandas 3.0.0 supports Python 3.10 and higher.
273273

274274
Increased minimum versions for dependencies
275275
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -305,7 +305,7 @@ See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for mor
305305
``pytz`` now an optional dependency
306306
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
307307

308-
pandas now uses :py:mod:`zoneinfo` from the standard library as the default timezone implementation when passing a timezone
308+
Pandas now uses :py:mod:`zoneinfo` from the standard library as the default timezone implementation when passing a timezone
309309
string to various methods. (:issue:`34916`)
310310

311311
*Old behavior:*

0 commit comments

Comments
 (0)