Skip to content

Commit 49bfaae

Browse files
Fix minor typo in README.
1 parent fa69183 commit 49bfaae

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Hierarchies can be created in a similar way as UIKit:
5959
dispatch_async(background_queue, ^{
6060
6161
s = [[ASDisplayNode alloc] init];
62-
[n addSubNode:s];
62+
[n addSubnode:s];
6363
6464
});
6565

@@ -75,6 +75,7 @@ A node may be backed by a view or layer, which must take place on the main threa
7575
// The properties you set earlier will be preserved
7676
// v.frame is {0, 40, 100, 100}
7777
// v.backgroundColor is green
78+
7879
});
7980

8081
Besides _ASDisplayNode_, AsyncDisplayKit has UIKit equivalent classes:

0 commit comments

Comments
 (0)