From 447a06d96300bf7b5e11af5c021b73c88d1b751c Mon Sep 17 00:00:00 2001 From: Yoshinori Sano Date: Tue, 29 Sep 2015 14:13:42 +0900 Subject: [PATCH] Fix trivial typo. --- .../AutoLoading/GitHubSearchRepositoriesViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RxExample/RxExample/Examples/AutoLoading/GitHubSearchRepositoriesViewController.swift b/RxExample/RxExample/Examples/AutoLoading/GitHubSearchRepositoriesViewController.swift index 048f8414..f8cd61e8 100644 --- a/RxExample/RxExample/Examples/AutoLoading/GitHubSearchRepositoriesViewController.swift +++ b/RxExample/RxExample/Examples/AutoLoading/GitHubSearchRepositoriesViewController.swift @@ -72,9 +72,9 @@ class GitHubSearchRepositoriesViewController: ViewController, UITableViewDelegat return [SectionModel(model: "Repositories", items: repositories)] } - dataSource.cellFactory = { (tv, ip, user: Repository) in + dataSource.cellFactory = { (tv, ip, repository: Repository) in let cell = tv.dequeueReusableCellWithIdentifier("Cell")! - cell.textLabel?.text = user.name + cell.textLabel?.text = repository.name return cell }