bump readme

This commit is contained in:
Max Sokolov 2016-10-03 13:55:23 +03:00
parent a25e4c0eb4
commit 6e2b707df7
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ let click = TableRowAction<String, UserTableViewCell>(.click) {
}
let rows: [Row] = users.filter({ $0.state == .active }).map({ TableRow<String, UserTableViewCell>(item: $0.name, actions: [click]) })
let rows = users.filter({ $0.state == .active }).map({ TableRow<String, UserTableViewCell>(item: $0.name, actions: [click]) })
tableDirector += rows
```