naming fix
This commit is contained in:
parent
ba94c670b3
commit
dd170e0873
|
|
@ -63,7 +63,7 @@ public final class TotalCountCursor<LT, ET, CC: TotalCountCursorConfiguration>:
|
|||
public func loadNextBatch() -> Single<[ET]> {
|
||||
let sharedListing = configuration.nextBatchObservable()
|
||||
.map { [configuration] listing in
|
||||
configuration.getResult(fromListing: listing)
|
||||
configuration.getResult(from: listing)
|
||||
}
|
||||
|
||||
let driverListing = sharedListing
|
||||
|
|
|
|||
|
|
@ -31,6 +31,6 @@ public protocol TotalCountCursorConfiguration: class, ResettableType {
|
|||
|
||||
func nextBatchObservable() -> Single<ListingType>
|
||||
|
||||
func getResult(fromListing listing: ListingType) -> ResultTuple
|
||||
func getResult(from listing: ListingType) -> ResultTuple
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue