Skip to content

Commit d8e469c

Browse files
bgrovebenvictor
authored and
victor
committed
DOC: fix typo in cookbook.rst (pandas-dev#21635)
Removing the semicolon delimiter at the end of the modified line of code allows the line's output to be displayed.
1 parent fb37759 commit d8e469c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/cookbook.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Building Criteria
132132

133133
.. ipython:: python
134134
135-
newseries = df.loc[(df['BBB'] > 25) | (df['CCC'] >= -40), 'AAA']; newseries;
135+
newseries = df.loc[(df['BBB'] > 25) | (df['CCC'] >= -40), 'AAA']; newseries
136136
137137
...or (with assignment modifies the DataFrame.)
138138

0 commit comments

Comments
 (0)