forgotten public

This commit is contained in:
Ivan Smolin 2018-08-07 16:32:49 +03:00
parent c1fe170c51
commit 079a723ef1
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
import RxSwift
extension PrimitiveSequence where Trait == SingleTrait {
public extension PrimitiveSequence where Trait == SingleTrait {
/// Replaces emitted element with new one.
///

View File

@ -27,7 +27,7 @@ public extension TableKitViewModel {
/// TableRow type.
typealias RowType = TableRow<CellType>
/// Returs TableRow initialized with current view model.
/// Returns TableRow initialized with current view model.
var tableRow: RowType {
return RowType(item: self)
}