From 1ce41d20dd746fd8f8f49dd3b89e995801f3f62b Mon Sep 17 00:00:00 2001 From: Ben Morrall Date: Tue, 12 Nov 2013 20:44:50 +1100 Subject: [PATCH] Fixed spelling typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b53c5f8..6336696 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Here is a simple sample of how you add two controllers to the card controller.' { // create an array of controllers NSArray *cards = @[[[FirstViewController alloc] init], [[SecondViewController alloc] init]]; - // craete card contoller with array of controllers + // create card controller with array of controllers JTCardsViewController *controller = [[JTCardsViewController alloc] initWithCards:cards]; self.window.rootViewController = controller;