Skip to content

Commit 8263b1e

Browse files
matdbrattli
authored andcommitted
Observable spelling
1 parent 78870b2 commit 8263b1e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

reactivex/operators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3889,7 +3889,7 @@ def to_iterable() -> Callable[[Observable[_T]], Observable[List[_T]]]:
38893889
There is also an alias called ``to_list``.
38903890
38913891
Returns:
3892-
An operator function that takes an obserable source and
3892+
An operator function that takes an observable source and
38933893
returns an observable sequence containing a single element with
38943894
an iterable containing all the elements of the source sequence.
38953895
"""

reactivex/operators/_partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def partition(source: Observable[_T]) -> List[Observable[_T]]:
2323
when the source completes.
2424
2525
Args:
26-
source: Source obserable to partition.
26+
source: Source observable to partition.
2727
2828
Returns:
2929
A list of observables. The first triggers when the

reactivex/operators/_sequenceequal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def sequence_equal(source: Observable[_T]) -> Observable[bool]:
3131
)
3232
3333
Args:
34-
source: Source obserable to compare.
34+
source: Source observable to compare.
3535
3636
Returns:
3737
An observable sequence that contains a single element which

reactivex/operators/_timeout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def timeout(source: Observable[_T]) -> Observable[_T]:
3636
source: Source observable to timeout
3737
3838
Returns:
39-
An obserable sequence switching to the other sequence in
39+
An observable sequence switching to the other sequence in
4040
case of a timeout.
4141
"""
4242

0 commit comments

Comments
 (0)