DOC: Fix title capitalization in documentation files (#32550) (#60021) · pandas-dev/pandas@2a10e04 (original) (raw)

Original file line number Diff line number Diff line change
@@ -133,9 +133,9 @@ API changes
133 133 to be inserted if ``True``, default is ``False`` (same as prior to 0.12) (:issue:`3679`)
134 134 - Implement ``__nonzero__`` for ``NDFrame`` objects (:issue:`3691`, :issue:`3696`)
135 135
136 - - IO api
136 + - IO API
137 137
138 - - added top-level function ``read_excel`` to replace the following,
138 + - Added top-level function ``read_excel`` to replace the following,
139 139 The original API is deprecated and will be removed in a future version
140 140
141 141 .. code-block:: python
@@ -153,7 +153,7 @@ API changes
153 153
154 154 pd.read_excel("path_to_file.xls", "Sheet1", index_col=None, na_values=["NA"])
155 155
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
157 157
158 158 .. code-block:: python
159 159
@@ -482,11 +482,11 @@ Bug fixes
482 482
483 483 - ``HDFStore``
484 484
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
487 487 an index with a different frequency than the existing, or attempting
488 488 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`)
490 490
491 491 - Non-unique index support clarified (:issue:`3468`).
492 492