Fixed: pullRequest comments

This commit is contained in:
Alexey Gerasimov 2017-06-06 11:58:05 +03:00
parent 596f25ccc0
commit 95974fa313
4 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "LeadKitAdditions"
s.version = "0.0.14"
s.version = "0.0.15"
s.summary = "iOS framework with a bunch of tools for rapid development"
s.homepage = "https://github.com/NikAshanin/LeadKitAdditions"
s.license = "Apache License, Version 2.0"

View File

@ -24,7 +24,7 @@ import UIKit
import RxSwift
import RxCocoa
/// Side to which ativity indicator applied
/// Side to which activity indicator applied
public enum LoadingBarButtonSide {
case left
case right
@ -90,6 +90,7 @@ extension Observable {
- Parameters:
- barButton: LoadingBarButton instance to which transformations would applied
- Returns:
- observable, that handles LoadingBarButton behaviour
*/
public func changeLoadingUI(using barButton: LoadingBarButton) -> Observable<Observable.E> {
return observeOn(MainScheduler.instance)

View File

@ -20,7 +20,7 @@
// THE SOFTWARE.
//
/// Describes error, which may occures during pass code entering
/// Describes error, which may occur during pass code entering
public enum PassCodeError: Error {
case codesNotMatch
case wrongCode

View File

@ -25,7 +25,7 @@ import LeadKit
import ObjectMapper
import RxSwift
/// Default implementation of network service, which trust any server and uses default timeout interval
/// Default implementation of network service, which trust any server and use default timeout interval
open class DefaultNetworkService: NetworkService {
static let retryLimit = 3