Merge pull request #96 from mkonicek/master

Fix a typo in CSSLayout.toString()
This commit is contained in:
Jared Forsyth
2015-08-05 16:00:29 -07:00

View File

@@ -50,7 +50,7 @@ public class CSSLayout {
"left: " + left + ", " +
"top: " + top + ", " +
"width: " + width + ", " +
"height: " + height +
"height: " + height + ", " +
"direction: " + direction +
"}";
}