Skip to content

Commit d909429

Browse files
authored
Merge pull request #262 from odoublewen/patch-1
small correction to core documentation
2 parents f6f6e14 + e7028c1 commit d909429

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/core.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ operations like ``partition``, ``buffer``, and ``sliding_window``
135135
.. code-block:: python
136136
137137
source = Stream()
138-
source.sliding_window(3).sink(print)
138+
source.sliding_window(3, return_partial=False).sink(print)
139139
140140
>>> source.emit(1)
141141
>>> source.emit(2)

0 commit comments

Comments
 (0)