Skip to content

Commit 271883b

Browse files
committed
Fix typo
1 parent 0ad9d60 commit 271883b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stream/stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Stream():
1717
.map(lambda w: w.getWeight())
1818
.sum()
1919
20-
A stream pipeline, like the "widgets" example above, can be viewed as a query on the stream source.
20+
A stream pipeline, like the elements example above, can be viewed as a query on the stream source.
2121
2222
A stream should be operated on (invoking an intermediate or terminal stream operation) only once. This rules out, for example, "forked" streams, where the same source feeds two or more pipelines, or multiple traversals of the same stream. A stream implementation may raise Exception if it detects that the stream is being reused.
2323
"""

0 commit comments

Comments
 (0)