From b8981485d4a7b33b03647a2a23f7677e54d9c746 Mon Sep 17 00:00:00 2001 From: Martin Konicek Date: Thu, 30 Jul 2015 12:22:14 +0100 Subject: [PATCH] Fix a typo in CSSLayout.toString --- src/java/src/com/facebook/csslayout/CSSLayout.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/src/com/facebook/csslayout/CSSLayout.java b/src/java/src/com/facebook/csslayout/CSSLayout.java index df98305e..6b457183 100644 --- a/src/java/src/com/facebook/csslayout/CSSLayout.java +++ b/src/java/src/com/facebook/csslayout/CSSLayout.java @@ -50,7 +50,7 @@ public class CSSLayout { "left: " + left + ", " + "top: " + top + ", " + "width: " + width + ", " + - "height: " + height + + "height: " + height + ", " + "direction: " + direction + "}"; }