Skip to content

Commit 70aabc6

Browse files
authored
typo fixed in indexing.rst (#46130)
fixed p.loc['a', : , :] to p.loc['a', : ] Issue: #46125
1 parent aafa7a9 commit 70aabc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/user_guide/indexing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Getting values from an object with multi-axes selection uses the following
8989
notation (using ``.loc`` as an example, but the following applies to ``.iloc`` as
9090
well). Any of the axes accessors may be the null slice ``:``. Axes left out of
9191
the specification are assumed to be ``:``, e.g. ``p.loc['a']`` is equivalent to
92-
``p.loc['a', :, :]``.
92+
``p.loc['a', :]``.
9393

9494
.. csv-table::
9595
:header: "Object Type", "Indexers"

0 commit comments

Comments
 (0)