aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/drop_function.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2014-02-23 21:25:35 -0500
committerPeter Eisentraut <peter_e@gmx.net>2014-02-23 21:31:08 -0500
commitbb4eefe7bf518e42c73797ea37b033a5d8a8e70a (patch)
treeae6df0b5d00f91bb4c7921673f79dca66642f850 /doc/src/sgml/ref/drop_function.sgml
parent769065c1b2471f484bb48bb58a8bdcf1d12a419c (diff)
downloadpostgresql-bb4eefe7bf518e42c73797ea37b033a5d8a8e70a.tar.gz
postgresql-bb4eefe7bf518e42c73797ea37b033a5d8a8e70a.zip
doc: Improve DocBook XML validity
DocBook XML is superficially compatible with DocBook SGML but has a slightly stricter DTD that we have been violating in a few cases. Although XSLT doesn't care whether the document is valid, the style sheets don't necessarily process invalid documents correctly, so we need to work toward fixing this. This first commit moves the indexterms in refentry elements to an allowed position. It has no impact on the output.
Diffstat (limited to 'doc/src/sgml/ref/drop_function.sgml')
-rw-r--r--doc/src/sgml/ref/drop_function.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/drop_function.sgml b/doc/src/sgml/ref/drop_function.sgml
index 2d0048be288..51b8ede5fbf 100644
--- a/doc/src/sgml/ref/drop_function.sgml
+++ b/doc/src/sgml/ref/drop_function.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
<refentry id="SQL-DROPFUNCTION">
+ <indexterm zone="sql-dropfunction">
+ <primary>DROP FUNCTION</primary>
+ </indexterm>
+
<refmeta>
<refentrytitle>DROP FUNCTION</refentrytitle>
<manvolnum>7</manvolnum>
@@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>remove a function</refpurpose>
</refnamediv>
- <indexterm zone="sql-dropfunction">
- <primary>DROP FUNCTION</primary>
- </indexterm>
-
<refsynopsisdiv>
<synopsis>
DROP FUNCTION [ IF EXISTS ] <replaceable class="parameter">name</replaceable> ( [ [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">argtype</replaceable> [, ...] ] )