diff --git a/README.md b/README.md index 8a8a4ee..aaf872e 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ class ViewController: FHDiffableTableViewController { override var cellProvider: UITableViewDiffableDataSource.CellProvider { return { tableView, indexPath, item in let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) - cell?.textLabel?.text = item.title + cell.textLabel?.text = item.title return cell } }