Typo fix
This commit is contained in:
parent
7acb77a41d
commit
5adacc4092
|
|
@ -304,7 +304,7 @@ Let's create a function which creates a sequence that returns one element upon s
|
|||
func myJust<E>(element: E) -> Observable<E> {
|
||||
return create { observer in
|
||||
observer.on(.Next(element))
|
||||
obsever.on(.Completed)
|
||||
observer.on(.Completed)
|
||||
return NopDisposable.instance
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue