Skip to content

Commit 5239174

Browse files
updating whatsnew docs
1 parent a90c640 commit 5239174

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/source/getting_started/comparison/comparison_with_sql.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Filtering in SQL is done via a WHERE clause.
7575
LIMIT 5;
7676
7777
DataFrames can be filtered in multiple ways; the most intuitive of which is using
78-
:ref:`boolean indexing <boolean.indexing>`.
78+
:ref:`boolean indexing <indexing>`
7979

8080
.. ipython:: python
8181

doc/source/user_guide/indexing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ new column. In 0.21.0 and later, this will raise a ``UserWarning``:
237237
238238
In [1]: df = pd.DataFrame({'one': [1., 2., 3.]})
239239
In [2]: df.two = [4, 5, 6]
240-
UserWarning: Pandas doesn't allow Series to be assigned into nonexistent columns - see :ref:`attribute accessing for Series <attribute.access>`
240+
UserWarning: Pandas doesn't allow Series to be assigned into nonexistent columns - see :ref:`attribute accessing for Series <indexing>`
241241
In [3]: df
242242
Out[3]:
243243
one
@@ -676,7 +676,7 @@ Current behavior
676676
KeyError in the future, you can use .reindex() as an alternative.
677677
678678
See the documentation here:
679-
:ref:`deprecate loc reindex for list-likes <indexing>`
679+
:ref:`Deprecation doc <indexing.deprecate_loc_reindex_listlike>`
680680
681681
Out[4]:
682682
1 2.0

doc/source/whatsnew/v0.21.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ Current behavior
470470
KeyError in the future, you can use .reindex() as an alternative.
471471
472472
See the documentation here:
473-
:ref:`Indexing and Selecting Data<indexing>`
473+
:ref:`Deprecation doc <indexing.deprecate_loc_reindex_listlike>`
474474
475475
Out[4]:
476476
1 2.0

0 commit comments

Comments
 (0)