Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
Fixed: pullRequest comments
Browse files Browse the repository at this point in the history
  • Loading branch information
scoreyou committed Jun 6, 2017
1 parent 596f25c commit 95974fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LeadKitAdditions.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 2 additions & 1 deletion LeadKitAdditions/Sources/Classes/LoadingBarButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 95974fa

Please sign in to comment.