From 49bfaaedd9954270a14a0ee47e94d8b1e3dddad3 Mon Sep 17 00:00:00 2001 From: Nadine Salter Date: Wed, 20 Aug 2014 15:43:30 -0700 Subject: [PATCH] Fix minor typo in README. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c220cd46eb..18878b8d30 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Hierarchies can be created in a similar way as UIKit: dispatch_async(background_queue, ^{ s = [[ASDisplayNode alloc] init]; - [n addSubNode:s]; + [n addSubnode:s]; }); @@ -75,6 +75,7 @@ A node may be backed by a view or layer, which must take place on the main threa // The properties you set earlier will be preserved // v.frame is {0, 40, 100, 100} // v.backgroundColor is green + }); Besides _ASDisplayNode_, AsyncDisplayKit has UIKit equivalent classes: