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 ```