@@ -113,7 +113,7 @@ dblink_connect(text connname, text connstr) returns text
113113 </refsect1>
114114
115115 <refsect1>
116- <title>Example </title>
116+ <title>Examples </title>
117117
118118<screen>
119119SELECT dblink_connect('dbname=postgres');
@@ -284,7 +284,7 @@ dblink_disconnect(text connname) returns text
284284 </refsect1>
285285
286286 <refsect1>
287- <title>Example </title>
287+ <title>Examples </title>
288288
289289<screen>
290290SELECT dblink_disconnect();
@@ -450,7 +450,7 @@ SELECT * FROM myremote_pg_proc WHERE proname LIKE 'bytea%';
450450 </refsect1>
451451
452452 <refsect1>
453- <title>Example </title>
453+ <title>Examples </title>
454454
455455<screen>
456456SELECT * FROM dblink('dbname=postgres', 'select proname, prosrc from pg_proc')
@@ -618,7 +618,7 @@ dblink_exec(text sql [, bool fail_on_error]) returns text
618618 </refsect1>
619619
620620 <refsect1>
621- <title>Example </title>
621+ <title>Examples </title>
622622
623623<screen>
624624SELECT dblink_connect('dbname=dblink_test_standby');
@@ -759,7 +759,7 @@ dblink_open(text connname, text cursorname, text sql [, bool fail_on_error]) ret
759759 </refsect1>
760760
761761 <refsect1>
762- <title>Example </title>
762+ <title>Examples </title>
763763
764764<screen>
765765SELECT dblink_connect('dbname=postgres');
@@ -876,7 +876,7 @@ dblink_fetch(text connname, text cursorname, int howmany [, bool fail_on_error])
876876 </refsect1>
877877
878878 <refsect1>
879- <title>Example </title>
879+ <title>Examples </title>
880880
881881<screen>
882882SELECT dblink_connect('dbname=postgres');
@@ -1009,7 +1009,7 @@ dblink_close(text connname, text cursorname [, bool fail_on_error]) returns text
10091009 </refsect1>
10101010
10111011 <refsect1>
1012- <title>Example </title>
1012+ <title>Examples </title>
10131013
10141014<screen>
10151015SELECT dblink_connect('dbname=postgres');
@@ -1066,7 +1066,7 @@ dblink_get_connections() returns text[]
10661066 </refsect1>
10671067
10681068 <refsect1>
1069- <title>Example </title>
1069+ <title>Examples </title>
10701070
10711071<programlisting>
10721072SELECT dblink_get_connections();
@@ -1125,7 +1125,7 @@ dblink_error_message(text connname) returns text
11251125 </refsect1>
11261126
11271127 <refsect1>
1128- <title>Example </title>
1128+ <title>Examples </title>
11291129
11301130<programlisting>
11311131SELECT dblink_error_message('dtest1');
@@ -1203,7 +1203,7 @@ dblink_send_query(text connname, text sql) returns int
12031203 </refsect1>
12041204
12051205 <refsect1>
1206- <title>Example </title>
1206+ <title>Examples </title>
12071207
12081208<programlisting>
12091209SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 < 3');
@@ -1262,7 +1262,7 @@ dblink_is_busy(text connname) returns int
12621262 </refsect1>
12631263
12641264 <refsect1>
1265- <title>Example </title>
1265+ <title>Examples </title>
12661266
12671267<programlisting>
12681268SELECT dblink_is_busy('dtest1');
@@ -1322,7 +1322,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex
13221322 </refsect1>
13231323
13241324 <refsect1>
1325- <title>Example </title>
1325+ <title>Examples </title>
13261326
13271327<screen>
13281328SELECT dblink_exec('LISTEN virtual');
@@ -1435,7 +1435,7 @@ dblink_get_result(text connname [, bool fail_on_error]) returns setof record
14351435 </refsect1>
14361436
14371437 <refsect1>
1438- <title>Example </title>
1438+ <title>Examples </title>
14391439
14401440<screen>
14411441contrib_regression=# SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
@@ -1552,7 +1552,7 @@ dblink_cancel_query(text connname) returns text
15521552 </refsect1>
15531553
15541554 <refsect1>
1555- <title>Example </title>
1555+ <title>Examples </title>
15561556
15571557<programlisting>
15581558SELECT dblink_cancel_query('dtest1');
@@ -1626,7 +1626,7 @@ CREATE TYPE dblink_pkey_results AS (position int, colname text);
16261626 </refsect1>
16271627
16281628 <refsect1>
1629- <title>Example </title>
1629+ <title>Examples </title>
16301630
16311631<screen>
16321632CREATE TABLE foobar (
@@ -1767,7 +1767,7 @@ dblink_build_sql_insert(text relname,
17671767 </refsect1>
17681768
17691769 <refsect1>
1770- <title>Example </title>
1770+ <title>Examples </title>
17711771
17721772<screen>
17731773SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
@@ -1881,7 +1881,7 @@ dblink_build_sql_delete(text relname,
18811881 </refsect1>
18821882
18831883 <refsect1>
1884- <title>Example </title>
1884+ <title>Examples </title>
18851885
18861886<screen>
18871887SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
@@ -2014,7 +2014,7 @@ dblink_build_sql_update(text relname,
20142014 </refsect1>
20152015
20162016 <refsect1>
2017- <title>Example </title>
2017+ <title>Examples </title>
20182018
20192019<screen>
20202020SELECT dblink_build_sql_update('foo', '1 2', 2, '{"1", "a"}', '{"1", "b"}');