Skip to content

Commit 1e5f7f0

Browse files
committed
No more properties, but methods to indicate they may take a bit of time.
1 parent f4ff09c commit 1e5f7f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Example/NotesExample-iOS/MasterViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ extension MasterViewController {
5050

5151
if indexPath.section == 0 {
5252
if indexPath.row == 0 {
53-
cell.detailTextLabel?.text = "\(noteBox.count)"
53+
cell.detailTextLabel?.text = "\(noteBox.count())"
5454
} else if indexPath.row == 1 {
55-
cell.detailTextLabel?.text = "\(authorBox.count)"
55+
cell.detailTextLabel?.text = "\(authorBox.count())"
5656
}
5757
}
5858

0 commit comments

Comments
 (0)