fixed Javadoc
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java
index 02b8998..19c7518 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java
@@ -209,11 +209,11 @@
 	public int minimumHeight = 0;
 	
 	/**
-	 * exclude is used to stop a widget from being managed by the
-	 * layout.  If this value is <code>true</code>, the widget size and
-	 * position will not be managed by the layout.  If this value is 
-	 * <code>false</code>, then the size and position of the widget will
-	 * be modified by the layout.
+	 * exclude is used to stop a control from being layed out.
+	 * If this value is <code>true</code>, the size and position
+	 * of the control will not be managed by the layout.  If this
+	 * value is <code>false</code>, the size and position of the
+	 * control will be computed and assigned.
 	 * 
 	 * The default value is <code>false</code>.
 	 * 
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java
index de48bc1..85a54ee 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java
@@ -53,11 +53,11 @@
 	public int height = SWT.DEFAULT;
 	
 	/**
-	 * exclude is used to stop a widget from being managed by the
-	 * layout.  If this value is <code>true</code>, the widget size and
-	 * position will not be managed by the layout.  If this value is 
-	 * <code>false</code>, then the size and position of the widget will
-	 * be modified by the layout.
+	 * exclude is used to stop a control from being layed out.
+	 * If this value is <code>true</code>, the size and position
+	 * of the control will not be managed by the layout.  If this
+	 * value is <code>false</code>, the size and position of the
+	 * control will be computed and assigned.
 	 * 
 	 * The default value is <code>false</code>.
 	 *