From 760e61b7e08a51ae5c9334a3c7bad870d89acc23 Mon Sep 17 00:00:00 2001 From: zaezero97 Date: Fri, 29 Apr 2022 18:04:24 +0900 Subject: [PATCH] Fix items method in READMD.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"])