From 2da7f86d383435887e9a21ef2c89f802ffd6cb8c Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 9 Sep 2009 06:37:25 +0000 Subject: [PATCH] fixes #3309 + two other typos svn changeset:8716/svn branch:6.1 --- src/com/vaadin/ui/SplitPanel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/vaadin/ui/SplitPanel.java b/src/com/vaadin/ui/SplitPanel.java index ae33bafa39..7430476b74 100644 --- a/src/com/vaadin/ui/SplitPanel.java +++ b/src/com/vaadin/ui/SplitPanel.java @@ -28,12 +28,12 @@ public class SplitPanel extends AbstractLayout { /* Predefined orientations */ /** - * Components are to be layed out vertically. + * Components are to be laid out vertically. */ public static final int ORIENTATION_VERTICAL = 0; /** - * Components are to be layed out horizontally. + * Components are to be laid out horizontally. */ public static final int ORIENTATION_HORIZONTAL = 1; @@ -281,7 +281,7 @@ public class SplitPanel extends AbstractLayout { * Moves the position of the splitter. * * @param pos - * the new size of the first region in persentage + * the new size of the first region in percentage */ public void setSplitPosition(int pos) { setSplitPosition(pos, UNITS_PERCENTAGE); -- 2.39.5