Missing a word (#68)

Missing `[ASInsetLayoutSpec` from ASInsetLayoutSpec creation line.
This commit is contained in:
djblake
2017-04-25 15:22:24 +01:00
committed by Michael Schneider
parent 09ad3b79b2
commit 1456366153

View File

@@ -154,7 +154,7 @@ If you set `INFINITY` as a value in the `UIEdgeInsets`, the inset spec will just
{
...
UIEdgeInsets *insets = UIEdgeInsetsMake(10, 10, 10, 10);
ASInsetLayoutSpec *headerWithInset = insetLayoutSpecWithInsets:insets child:textNode];
ASInsetLayoutSpec *headerWithInset = [ASInsetLayoutSpec insetLayoutSpecWithInsets:insets child:textNode];
...
}
</pre>