Skip to content

Commit

Permalink
typo fixed in indexing.rst (pandas-dev#46130)
Browse files Browse the repository at this point in the history
fixed p.loc['a', : , :]  to p.loc['a', : ] 
Issue: pandas-dev#46125
  • Loading branch information
nameongithub authored Feb 23, 2022
1 parent aafa7a9 commit 70aabc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/user_guide/indexing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Getting values from an object with multi-axes selection uses the following
notation (using ``.loc`` as an example, but the following applies to ``.iloc`` as
well). Any of the axes accessors may be the null slice ``:``. Axes left out of
the specification are assumed to be ``:``, e.g. ``p.loc['a']`` is equivalent to
``p.loc['a', :, :]``.
``p.loc['a', :]``.

.. csv-table::
:header: "Object Type", "Indexers"
Expand Down

0 comments on commit 70aabc6

Please sign in to comment.