diff options
author | Michael Paquier | 2022-01-25 00:40:04 +0000 |
---|---|---|
committer | Michael Paquier | 2022-01-25 00:40:04 +0000 |
commit | 410aa248e5a883fde4832999cc9b23c7ace0f2ff (patch) | |
tree | e3dba4bbe6b5e60687939a1b04cfaac9a129adb9 /doc/src/sgml/postgres-fdw.sgml | |
parent | c817a072aae8441a11d6a0336953ecd69dc548ba (diff) |
Fix various typos, grammar and code style in comments and docs
This fixes a set of issues that have accumulated over the past months
(or years) in various code areas. Most fixes are related to some recent
additions, as of the development of v15.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20220124030001.GQ23027@telsasoft.com
Diffstat (limited to 'doc/src/sgml/postgres-fdw.sgml')
-rw-r--r-- | doc/src/sgml/postgres-fdw.sgml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml index 41cdb9ea1b5..2bb31f11255 100644 --- a/doc/src/sgml/postgres-fdw.sgml +++ b/doc/src/sgml/postgres-fdw.sgml @@ -955,8 +955,8 @@ postgres=# SELECT postgres_fdw_disconnect_all(); of any length and contain even non-ASCII characters. However when it's passed to and used as <varname>application_name</varname> in a foreign server, note that it will be truncated to less than - <symbol>NAMEDATALEN</symbol> characters and any characters other - than printable ASCII ones in it will be replaced with question + <symbol>NAMEDATALEN</symbol> characters and anything other than + than printable ASCII characters will be replaced with question marks (<literal>?</literal>). See <xref linkend="guc-application-name"/> for details. </para> @@ -981,19 +981,19 @@ postgres=# SELECT postgres_fdw_disconnect_all(); <tbody> <row> <entry><literal>%a</literal></entry> - <entry>Application name in local server</entry> + <entry>Application name on local server</entry> </row> <row> <entry><literal>%u</literal></entry> - <entry>User name in local server</entry> + <entry>User name on local server</entry> </row> <row> <entry><literal>%d</literal></entry> - <entry>Database name in local server</entry> + <entry>Database name on local server</entry> </row> <row> <entry><literal>%p</literal></entry> - <entry>Process ID of backend in local server</entry> + <entry>Process ID of backend on local server</entry> </row> <row> <entry><literal>%%</literal></entry> |