diff --git a/README.md b/README.md index 408ec8d..1487842 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ RxSwift helps alleviate some of the burden with a simple data binding mechanism: 2) Bind the data to the tableView/collectionView using one of: - `rx.items(dataSource:protocol)` - `rx.items(cellIdentifier:String)` - - `rx.items(cellIdentifier:String:Cell.Type:_:)` - - `rx.items(_:_:)` + - `rx.items(cellIdentifier:String, cellType: Cell.Type)` + - `rx.items(_ source: ObservableType)` ```swift let data = Observable<[String]>.just(["first element", "second element", "third element"])