diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-02-16 11:30:07 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-02-16 11:30:17 -0500 |
commit | d993171a7aa212db479ec53b47881b4e677d0b5c (patch) | |
tree | 100422cf9d47e160659805690b9312e57a086681 | |
parent | 7d1b6bf407ad19247f0a65aaf742b769e0938b2c (diff) | |
download | postgresql-d993171a7aa212db479ec53b47881b4e677d0b5c.tar.gz postgresql-d993171a7aa212db479ec53b47881b4e677d0b5c.zip |
Doc: remove duplicate index entry.
This causes a warning with the old html-docs toolchain, though not with the
new. I had originally supposed that we needed both <indexterm> entries to
get both a primary index entry and a see-also link; but evidently not,
as pointed out by Fabien Coelho.
Discussion: https://postgr.es/m/alpine.DEB.2.20.1702161616060.5445@lancre
-rw-r--r-- | doc/src/sgml/syntax.sgml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index 97bead90f89..40c46c60c7f 100644 --- a/doc/src/sgml/syntax.sgml +++ b/doc/src/sgml/syntax.sgml @@ -1699,9 +1699,6 @@ SELECT string_agg(a ORDER BY a, ',') FROM table; -- incorrect <para> <indexterm> <primary>median</primary> - </indexterm> - <indexterm> - <primary>median</primary> <seealso>percentile</seealso> </indexterm> An example of an ordered-set aggregate call is: |