From 6e2b707df77c766b49e23e63540ae0acde7f5c20 Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Mon, 3 Oct 2016 13:55:23 +0300 Subject: [PATCH] bump readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09da59c..290a649 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ let click = TableRowAction(.click) { } -let rows: [Row] = users.filter({ $0.state == .active }).map({ TableRow(item: $0.name, actions: [click]) }) +let rows = users.filter({ $0.state == .active }).map({ TableRow(item: $0.name, actions: [click]) }) tableDirector += rows ```