Skip to content

Commit

Permalink
docs: fix simple typo, sequenc -> sequence (EntilZha#152)
Browse files Browse the repository at this point in the history
* docs: fix simple typo, sequenc -> sequence

There is a small typo in functional/pipeline.py.

Should read `sequence` rather than `sequenc`.

* Update pipeline.py
  • Loading branch information
timgates42 authored Dec 28, 2020
1 parent dcaac91 commit 291a491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functional/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ def list(self, n=None):
>>> seq([1, 2, 3]).list()
[1, 2, 3]
:param n: Take n elements of sequenc eif not None
:param n: Take n elements of sequence if not None
:return: list of elements in sequence
"""
return self.to_list(n=n)
Expand Down

0 comments on commit 291a491

Please sign in to comment.