small demo fix

This commit is contained in:
John Estropia
2016-03-25 18:18:17 +09:00
parent 0c1af09a8d
commit 7de13131a4

View File

@@ -20,7 +20,7 @@ class QueryingResultsViewController: UITableViewController {
self.values = array.map { (item: AnyObject) -> (title: String, detail: String) in self.values = array.map { (item: AnyObject) -> (title: String, detail: String) in
( (
title: item.description, title: item.description,
detail: String(reflecting: item) detail: String(reflecting: item.dynamicType)
) )
} }
@@ -28,7 +28,7 @@ class QueryingResultsViewController: UITableViewController {
self.values = [ self.values = [
( (
title: item.description, title: item.description,
detail: String(reflecting: item) detail: String(reflecting: item.dynamicType)
) )
] ]