Index: /CKEditor/trunk/_samples/autogrow.html
===================================================================
--- /CKEditor/trunk/_samples/autogrow.html	(revision 7045)
+++ /CKEditor/trunk/_samples/autogrow.html	(revision 7046)
@@ -42,5 +42,7 @@
 	{
 		<strong>extraPlugins : 'autogrow',</strong>
-		autoGrow_maxHeight : 800
+		autoGrow_maxHeight : 800,
+		// Remove the resize plugin, as it doesn't make sense to use it in conjunction with the AutoGrow plugin.
+		removePlugins : 'resize'
 	});</pre>
 	<p>
@@ -69,5 +71,6 @@
 
 				CKEDITOR.replace( 'editor1', {
-					extraPlugins : 'autogrow'
+					extraPlugins : 'autogrow',
+					removePlugins : 'resize'
 				});
 
@@ -84,5 +87,6 @@
 				CKEDITOR.replace( 'editor2', {
 					extraPlugins : 'autogrow',
-					autoGrow_maxHeight : 400
+					autoGrow_maxHeight : 400,
+					removePlugins : 'resize'
 				});
 
