From 7cc572c7aafbc658db198a60833c2d278b501eaa Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Tue, 14 Jun 2016 16:07:49 +0300 Subject: [PATCH] update readme --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ab571c6..170adf3 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,14 @@ It hides a complexity of `UITableViewDataSource` and `UITableViewDelegate` metho - [x] Automatic xib/classes registration - [x] No need to subclass - [x] Extensibility -- [x] Tests -## Usage +## Getting Started Create your rows: ```swift let row1 = TableRow(item: "1") -let row2 = TableRow(item: 2) -let row3 = TableRow(item: 3.0) +let row2 = TableRow(item: 2) +let row3 = TableRow(item: 3.0) ``` Put rows into section: ```swift