@@ -131,15 +131,15 @@ test=# select intset(1);
131131 </thead>
132132 <tbody>
133133 <row>
134- <entry><literal>int[] && int[]</literal></entry>
134+ <entry><literal>int[] && int[]</literal></entry>
135135 <entry>overlap - returns TRUE if arrays have at least one common element</entry>
136136 </row>
137137 <row>
138- <entry><literal>int[] @> int[]</literal></entry>
138+ <entry><literal>int[] @> int[]</literal></entry>
139139 <entry>contains - returns TRUE if left array contains right array</entry>
140140 </row>
141141 <row>
142- <entry><literal>int[]< @ int[]</literal></entry>
142+ <entry><literal>int[]< @ int[]</literal></entry>
143143 <entry>contained - returns TRUE if left array is contained in right array</entry>
144144 </row>
145145 <row>
@@ -172,7 +172,7 @@ test=# select intset(1);
172172 </row>
173173
174174 <row>
175- <entry><literal>int[] & int[]</literal></entry>
175+ <entry><literal>int[] & int[]</literal></entry>
176176 <entry>returns intersection of arrays</entry>
177177 </row>
178178
@@ -192,7 +192,7 @@ test=# select intset(1);
192192 </tgroup>
193193 </table>
194194 <para>
195- (Before PostgreSQL 8.2, the containment operators @> and< @ were
195+ (Before PostgreSQL 8.2, the containment operators @> and< @ were
196196 respectively called @ and ~. These names are still available, but are
197197 deprecated and will eventually be retired. Notice that the old names
198198 are reversed from the convention formerly followed by the core geometric
@@ -213,12 +213,12 @@ CREATE unique index message_section_map_key2 ON message_section_map (sid, mid );
213213CREATE INDEX message_rdtree_idx ON message USING GIST ( sections gist__int_ops);
214214
215215-- select some messages with section in 1 OR 2 - OVERLAP operator
216- SELECT message.mid FROM message WHERE message.sections && '{1,2}';
216+ SELECT message.mid FROM message WHERE message.sections && '{1,2}';
217217
218218-- select messages contains in sections 1 AND 2 - CONTAINS operator
219- SELECT message.mid FROM message WHERE message.sections @> '{1,2}';
219+ SELECT message.mid FROM message WHERE message.sections @> '{1,2}';
220220-- the same, CONTAINED operator
221- SELECT message.mid FROM message WHERE '{1,2}'< @ message.sections;
221+ SELECT message.mid FROM message WHERE '{1,2}'< @ message.sections;
222222 </programlisting>
223223 </sect2>
224224
@@ -230,7 +230,7 @@ SELECT message.mid FROM message WHERE '{1,2}' <@ message.sections;
230230 <programlisting>
231231 cd ./bench
232232 1. createdb TEST
233- 2. psql TEST< ../_int.sql
233+ 2. psql TEST< ../_int.sql
234234 3. ./create_test.pl | psql TEST
235235 4. ./bench.pl - perl script to benchmark queries, supports OR, AND queries
236236 with/without RD-Tree. Run script without arguments to