Skip to content

Commit

Permalink
fixed: public modifier on observable extension
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanbruel committed Mar 22, 2017
1 parent 650b46f commit 242c7d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RxReachability.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'RxReachability'
s.version = '0.1.2'
s.version = '0.1.3'
s.summary = 'RxSwift bindings for Reachability'


Expand Down
4 changes: 2 additions & 2 deletions RxReachability/Classes/ObservableType+Reachability.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import ReachabilitySwift
import RxCocoa
import RxSwift

extension ObservableType {
public extension ObservableType {

func retryOnConnect(timeout: TimeInterval) -> Observable<E> {
public func retryOnConnect(timeout: TimeInterval) -> Observable<E> {
return retryWhen { _ in
return Reachability.rx.isConnected
.timeout(timeout, scheduler: MainScheduler.asyncInstance)
Expand Down

0 comments on commit 242c7d9

Please sign in to comment.