From 05329fd95093c81250da6ad5c8ab2ac734a2c589 Mon Sep 17 00:00:00 2001 From: Michael <184316+muescha@users.noreply.github.com> Date: Fri, 16 Mar 2018 00:32:14 +0100 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d38fb26..b505973 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Each flag is represented by a class (the model) called `CountryModel`; the insta ```swift let countries: [CountryModel] = ... // your array of countries let rows = Row.create(countries, { row in // create rows -row.onTap = { _, path in // reponds to tap on cells +row.onTap = { _, path in // responds to tap on cells print("Tap on '\(row.item.name)'") return nil }