From 0d76c8a6089bdde9ad7daad5b5271c3104ce6109 Mon Sep 17 00:00:00 2001 From: Felix Herrmann <42500484+FelixHerrmann@users.noreply.github.com> Date: Sun, 15 Aug 2021 02:56:19 +0200 Subject: [PATCH] README code example fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }