diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-18 23:44:30 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-18 23:46:02 -0400 |
commit | 3e04d005c455153a2242c172ed61db2f0b362bc6 (patch) | |
tree | f976857e29276236d313cb5067aee421390488e3 | |
parent | a84661215c0275942b3ecf3a023a8447c71338eb (diff) | |
download | postgresql-3e04d005c455153a2242c172ed61db2f0b362bc6.tar.gz postgresql-3e04d005c455153a2242c172ed61db2f0b362bc6.zip |
doc: Fix a few typos and awkward links
-rw-r--r-- | doc/src/sgml/config.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 09cbf013123..f79612a429f 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -532,10 +532,10 @@ include_dir 'conf.d' </term> <listitem> <para> - Specifies the configuration file for - <xref linkend="auth-username-maps"> user name mapping + Specifies the configuration file for user name mapping (customarily called <filename>pg_ident.conf</>). This parameter can only be set at server start. + See also <xref linkend="auth-username-maps">. </para> </listitem> </varlistentry> diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 23536fd7e9d..9382323bda8 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -1162,7 +1162,7 @@ EXEC SQL END DECLARE SECTION; There are two use cases for arrays as host variables. The first is a way to store some text string in <type>char[]</type> or <type>VARCHAR[]</type>, as - explained <xref linkend="ecpg-char">. The second use case is to + explained in <xref linkend="ecpg-char">. The second use case is to retrieve multiple rows from a query result without using a cursor. Without an array, to process a query result consisting of multiple rows, it is required to use a cursor and diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 8251603c759..ebefe0f6b1c 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -207,7 +207,7 @@ protocol to make nodes agree on a serializable transactional order. middleware. Care must also be taken that all transactions either commit or abort on all servers, perhaps using two-phase commit (<xref linkend="sql-prepare-transaction"> - and <xref linkend="sql-commit-prepared">. + and <xref linkend="sql-commit-prepared">). <productname>Pgpool-II</> and <productname>Continuent Tungsten</> are examples of this type of replication. </para> |