From 1282520a4bc4180a8ff5c17b26609c857b2eccc4 Mon Sep 17 00:00:00 2001 From: Anton Sotkov Date: Sat, 12 Oct 2019 13:04:31 +0300 Subject: [PATCH] Fix retain cycle in Swift example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3298a70..c78184a 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ kvoController.observe(viewModel, keyPath: "listsDidChange", options: [.new, .initial]) { (viewController, viewModel, change) in - self.taskListsTableView.reloadData() + viewController.taskListsTableView.reloadData() } ```