diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml
index fc9ba0c0186729787355c0ebd106462d3d2e6650..f197665089f4b35be02b8b054227d13f72e0bfed 100644
--- a/doc/src/sgml/ecpg.sgml
+++ b/doc/src/sgml/ecpg.sgml
@@ -942,20 +942,6 @@ struct varchar_var { int len; char arr[180]; } var;
      is used.
     </para>
 
-    <para>
-     Two or more <type>VARCHAR</type> host variables cannot be defined
-     in single line statement.  The following code will confuse
-     the <command>ecpg</command> preprocessor:
-<programlisting>
-VARCHAR v1[128], v2[128];   /* WRONG */
-</programlisting>
-     Two variables should be defined in separate statements like this:
-<programlisting>
-VARCHAR v1[128];
-VARCHAR v2[128];
-</programlisting>
-    </para>
-
     <para>
      <type>VARCHAR</type> can be written in upper or lower case, but
      not in mixed case.