Skip to content

Commit 7ff744d

Browse files
Merge pull request pandas-dev#9238 from clham/GH8686
DOC: Small syntax change to indexing.rst to address GH8686.
2 parents 323cf72 + f158921 commit 7ff744d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

doc/source/indexing.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ Object selection has had a number of user-requested additions in order to
7171
support more explicit location based indexing. pandas now supports three types
7272
of multi-axis indexing.
7373

74-
- ``.loc`` is strictly label based, will raise ``KeyError`` when the items are
75-
not found, allowed inputs are:
74+
- ``.loc`` is primarily label based, but may also be used with a boolean array. ``.loc`` will raise ``KeyError`` when the items are not found. Allowed inputs are:
7675

7776
- A single label, e.g. ``5`` or ``'a'``, (note that ``5`` is interpreted as a
7877
*label* of the index. This use is **not** an integer position along the

0 commit comments

Comments
 (0)