diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-01-15 08:47:14 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-01-15 08:47:14 +0900 |
commit | 3607dd39ba3d31d30696acacaf76d4a97dbd842f (patch) | |
tree | d3e292a915325187a38e520d208937d627d18a14 /doc/src | |
parent | b3a5f01b75f765e0958118acb9f054d3dca3b23c (diff) |
Fix typos in documentation and for one wait event
These have been found while cross-checking for the use of unique words
in the documentation, and a wait event was not getting generated in a way
consistent to what the documentation provided.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/9b5a3a85-899a-ae62-dbab-1e7943aa5ab1@gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/libpq.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_dump.sgml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 0915be0d6df..8fd1288dca9 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -16153,7 +16153,7 @@ SET search_path TO <replaceable>schema</> <optional>, <replaceable>schema</>, .. optional parameter. The return value is <literal>NULL</literal> when the log format requested is not a configured <xref linkend="guc-log-destination">. The - <function>pg_current_logfiles</function> reflects the contents of the + <function>pg_current_logfile</function> reflects the contents of the <filename>current_logfiles</> file. </para> diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index e8ec495d031..ad2e3a4466d 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -6106,7 +6106,7 @@ char *PQencryptPasswordConn(PGconn *conn, const char *passwd, const char *user, char *PQencryptPassword(const char *passwd, const char *user); </synopsis> <function>PQencryptPassword</> is an older, deprecated version of - <function>PQencryptPasswodConn</>. The difference is that + <function>PQencryptPasswordConn</>. The difference is that <function>PQencryptPassword</> does not require a connection object, and <literal>md5</> is always used as the encryption algorithm. diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index 4c63ebb7b0e..c221d2a080f 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -1246,7 +1246,7 @@ CREATE DATABASE foo WITH TEMPLATE template0; <para> When dumping logical replication subscriptions, <application>pg_dump</application> will generate <command>CREATE - SUBSCRIPTION</command> commands that use the <literal>NOCONNECT</literal> + SUBSCRIPTION</command> commands that use the <literal>connect = false</literal> option, so that restoring the subscription does not make remote connections for creating a replication slot or for initial table copy. That way, the dump can be restored without requiring network access to the remote |