Skip to content

Commit e6774dc

Browse files
committed
Don't mark up as acronym that which is not an acronym.
1 parent d235d9b commit e6774dc

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

doc/src/sgml/pygresql.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/pygresql.sgml,v 1.5 2001/11/21 05:53:41 thomas Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/pygresql.sgml,v 1.6 2002/03/27 19:19:22 petere Exp $ -->
22

33
<chapter id="pygresql">
44
<title><application>PyGreSQL</application> - <application>Python</application> Interface</title>
@@ -469,7 +469,7 @@ make && make install
469469
programs. You can prompt the user for a value, put it in the
470470
default variable, and forget it, without having to modify your
471471
environment. The support for default variables can be disabled by
472-
setting the <acronym>-DNO_DEF_VAR</acronym> option in the Python
472+
setting the <option>-DNO_DEF_VAR</option> option in the Python
473473
Setup file. Methods relative to this are specified by te tag [DV].
474474
</para>
475475

doc/src/sgml/ref/select.sgml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.52 2002/03/22 19:20:45 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.53 2002/03/27 19:19:23 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -937,9 +937,7 @@ SELECT actors.name
937937
<refsect2info>
938938
<date>1998-09-24</date>
939939
</refsect2info>
940-
<title>
941-
<acronym>Extensions</acronym>
942-
</title>
940+
<title>Extensions</title>
943941

944942
<para>
945943
<productname>PostgreSQL</productname> allows one to omit

doc/src/sgml/xindex.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/xindex.sgml,v 1.22 2002/01/07 02:29:14 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/xindex.sgml,v 1.23 2002/03/27 19:19:23 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -25,7 +25,7 @@ PostgreSQL documentation
2525
pg_amproc, pg_operator</filename> and <filename>pg_opclass</filename>).
2626
Unfortunately, there is no simple command to do this. We will demonstrate
2727
how to modify these catalogs through a running example: a new operator
28-
class for the <acronym>B-tree</acronym> access method that stores and
28+
class for the B-tree access method that stores and
2929
sorts complex numbers in ascending absolute value order.
3030
</para>
3131
</sect1>
@@ -106,10 +106,10 @@ PostgreSQL documentation
106106
</para>
107107

108108
<para>
109-
The <acronym>object ID</acronym> of the row in
109+
The <acronym>OID</acronym> of the row in
110110
<filename>pg_am</filename> is used as a foreign key in a lot of other
111111
tables. You do not need to add a new row to this table; all that
112-
you are interested in is the <acronym>object ID</acronym> of the access
112+
you are interested in is the <acronym>OID</acronym> of the access
113113
method you want to extend:
114114

115115
<screen>

0 commit comments

Comments
 (0)