Skip to content

Commit

Permalink
Merge pull request #162 from faroit/fix_streamer_docstring
Browse files Browse the repository at this point in the history
fix docstring of streamer: max_items -> max_iter
  • Loading branch information
bmcfee authored Jan 30, 2024
2 parents dff2c75 + dcb52aa commit d1ed01b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pescador/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ class Streamer(object):
... print(i) # Displays 0, 1, 2, 3, 4
Or with a maximum number of items
Or with a maximum number of examples
>>> for i in stream(max_items=3):
>>> for i in stream(max_iter=3):
... print(i) # Displays 0, 1, 2
Expand Down

0 comments on commit d1ed01b

Please sign in to comment.