Skip to content

Commit

Permalink
Observable spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mat authored and dbrattli committed Dec 31, 2022
1 parent 78870b2 commit 8263b1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion reactivex/operators/__init__.py
Expand Up @@ -3889,7 +3889,7 @@ def to_iterable() -> Callable[[Observable[_T]], Observable[List[_T]]]:
There is also an alias called ``to_list``.
Returns:
An operator function that takes an obserable source and
An operator function that takes an observable source and
returns an observable sequence containing a single element with
an iterable containing all the elements of the source sequence.
"""
Expand Down
2 changes: 1 addition & 1 deletion reactivex/operators/_partition.py
Expand Up @@ -23,7 +23,7 @@ def partition(source: Observable[_T]) -> List[Observable[_T]]:
when the source completes.
Args:
source: Source obserable to partition.
source: Source observable to partition.
Returns:
A list of observables. The first triggers when the
Expand Down
2 changes: 1 addition & 1 deletion reactivex/operators/_sequenceequal.py
Expand Up @@ -31,7 +31,7 @@ def sequence_equal(source: Observable[_T]) -> Observable[bool]:
)
Args:
source: Source obserable to compare.
source: Source observable to compare.
Returns:
An observable sequence that contains a single element which
Expand Down
2 changes: 1 addition & 1 deletion reactivex/operators/_timeout.py
Expand Up @@ -36,7 +36,7 @@ def timeout(source: Observable[_T]) -> Observable[_T]:
source: Source observable to timeout
Returns:
An obserable sequence switching to the other sequence in
An observable sequence switching to the other sequence in
case of a timeout.
"""

Expand Down

0 comments on commit 8263b1e

Please sign in to comment.