Skip to content

Commit 992e06a

Browse files
committed
DOC: Release note link and format correction
1 parent f99dc7b commit 992e06a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/source/whatsnew/v0.16.1.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We recommend that all users upgrade to this version.
99

1010
Highlights include:
1111

12-
- Support for a ``CategoricalIndex``, a category based index, see :ref:`here <whatsnew_0161`.enhancements.categoricalindex>`
12+
- Support for a ``CategoricalIndex``, a category based index, see :ref:`here <whatsnew_0161.enhancements.categoricalindex>`
1313

1414
.. contents:: What's new in v0.16.1
1515
:local:
@@ -24,15 +24,15 @@ Enhancements
2424
- Added ``StringMethods.capitalize()`` and ``swapcase`` which behave as the same as standard ``str`` (:issue:`9766`)
2525
- Added ``StringMethods`` (.str accessor) to ``Index`` (:issue:`9068`)
2626

27-
The `.str` accessor is now available for both `Series` and `Index`.
27+
The ``.str`` accessor is now available for both ``Series`` and ``Index``.
2828

2929
.. ipython:: python
3030

3131
idx = Index([' jack', 'jill ', ' jesse ', 'frank'])
3232
idx.str.strip()
3333

34-
One special case for the `.str` accessor on `Index` is that if a string method returns `bool`, the `.str` accessor
35-
will return a `np.array` instead of a boolean `Index` (:issue:`8875`). This enables the following expression
34+
One special case for the `.str` accessor on ``Index`` is that if a string method returns ``bool``, the ``.str`` accessor
35+
will return a ``np.array`` instead of a boolean ``Index`` (:issue:`8875`). This enables the following expression
3636
to work naturally:
3737

3838

@@ -46,7 +46,7 @@ Enhancements
4646

4747
- ``DataFrame.mask()`` and ``Series.mask()`` now support same keywords as ``where`` (:issue:`8801`)
4848

49-
- ``drop`` function can now accept ``errors`` keyword to suppress ValueError raised when any of label does not exist in the target data. (:issue:`6736`)
49+
- ``drop`` function can now accept ``errors`` keyword to suppress ``ValueError`` raised when any of label does not exist in the target data. (:issue:`6736`)
5050

5151
.. ipython:: python
5252

@@ -61,7 +61,7 @@ Enhancements
6161
- Allow Panel.shift with ``axis='items'`` (:issue:`9890`)
6262

6363
- Trying to write an excel file now raises ``NotImplementedError`` if the ``DataFrame`` has a ``MultiIndex`` instead of writing a broken Excel file. (:issue:`9794`)
64-
- Allow ``Categorical.add_categories`` to accept `Series` or `np.array`. (:issue:`9927`)
64+
- Allow ``Categorical.add_categories`` to accept ``Series`` or ``np.array``. (:issue:`9927`)
6565

6666
- Add/delete ``str/dt/cat`` accessors dynamically from ``__dir__``. (:issue:`9910`)
6767

@@ -87,7 +87,7 @@ setting the index of a ``DataFrame/Series`` with a ``category`` dtype would conv
8787
df.dtypes
8888
df.B.cat.categories
8989

90-
setting the index, will create create a CategoricalIndex
90+
setting the index, will create create a ``CategoricalIndex``
9191

9292
.. ipython :: python
9393

@@ -179,7 +179,7 @@ Bug Fixes
179179

180180
- Fixed bug (:issue:`9542`) where labels did not appear properly in legend of ``DataFrame.plot()``. Passing ``label=`` args also now works, and series indices are no longer mutated.
181181
- Bug in json serialization when frame has length zero.(:issue:`9805`)
182-
- Bug in `read_csv` where missing trailing delimiters would cause segfault. (:issue:`5664`)
182+
- Bug in ``read_csv`` where missing trailing delimiters would cause segfault. (:issue:`5664`)
183183
- Bug in retaining index name on appending (:issue:`9862`)
184184
- Bug in ``scatter_matrix`` draws unexpected axis ticklabels (:issue:`5662`)
185185
- Fixed bug in ``StataWriter`` resulting in changes to input ``DataFrame`` upon save (:issue:`9795`).

0 commit comments

Comments
 (0)