Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8522f21

Browse files
committed
Fix whitespace
1 parent 56abcf6 commit 8522f21

13 files changed

+21
-21
lines changed

doc/src/sgml/datatype.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4496,7 +4496,7 @@ SELECT * FROM pg_attribute
44964496
the write-ahead log stream. It is printed as two hexadecimal numbers of
44974497
up to 8 digits each, separated by a slash; for example,
44984498
<literal>16/B374D848</>. The <type>pg_lsn</type> type supports the
4499-
standard comparison operators, like <literal>=</literal> and
4499+
standard comparison operators, like <literal>=</literal> and
45004500
<literal>&gt;</literal>. Two LSNs can be subtracted using the
45014501
<literal>-</literal> operator; the result is the number of bytes separating
45024502
those write-ahead log positions.

doc/src/sgml/func.sgml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10160,8 +10160,8 @@ table2-mapping
1016010160
</note>
1016110161
<para>
1016210162
The standard comparison operators shown in <xref
10163-
linkend="functions-comparison-table"> are available for
10164-
<type>jsonb</type>, but not for <type>json</type>. They follow the
10163+
linkend="functions-comparison-table"> are available for
10164+
<type>jsonb</type>, but not for <type>json</type>. They follow the
1016510165
ordering rules for btree operations outlined at <xref
1016610166
linkend="json-indexing">.
1016710167
</para>
@@ -10668,9 +10668,9 @@ table2-mapping
1066810668
<entry><literal>select * from json_to_record('{"a":1,"b":[1,2,3],"c":"bar"}') as x(a int, b text, d text) </literal></entry>
1066910669
<entry>
1067010670
<programlisting>
10671-
a | b | d
10671+
a | b | d
1067210672
---+---------+---
10673-
1 | [1,2,3] |
10673+
1 | [1,2,3] |
1067410674
</programlisting>
1067510675
</entry>
1067610676
</row>
@@ -14006,7 +14006,7 @@ AND
1400614006
<literal>*&gt;=</>.
1400714007
These operators compare the internal binary representation of the two
1400814008
rows. Two rows might have a different binary representation even
14009-
though comparisons of the two rows with the equality operator is true.
14009+
though comparisons of the two rows with the equality operator is true.
1401014010
The ordering of rows under these comparision operators is deterministic
1401114011
but not otherwise meaningful. These operators are used internally for
1401214012
materialized views and might be useful for other specialized purposes

doc/src/sgml/gin.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@
559559
triConsistent alone is sufficient. However, if the boolean variant is
560560
significantly cheaper to calculate, it can be advantageous to provide both.
561561
If only the boolean variant is provided, some optimizations that depend on
562-
refuting index items before fetching all the keys are disabled.
562+
refuting index items before fetching all the keys are disabled.
563563

564564
<variablelist>
565565
<varlistentry>
@@ -628,7 +628,7 @@
628628
When <literal>GIN_MAYBE</> values are present, the function should only
629629
return GIN_TRUE if the item matches whether or not the index item
630630
contains the corresponding query keys. Likewise, the function must
631-
return GIN_FALSE only if the item does not match, whether or not it
631+
return GIN_FALSE only if the item does not match, whether or not it
632632
contains the GIN_MAYBE keys. If the result depends on the GIN_MAYBE
633633
entries, i.e. the match cannot be confirmed or refuted based on the
634634
known query keys, the function must return GIN_MAYBE.

doc/src/sgml/libpq.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7200,7 +7200,7 @@ ldap://ldap.acme.com/cn=dbserver,cn=hosts?pgconnectinfo?base?(objectclass=*)
72007200
</para>
72017201

72027202
<para>
7203-
Note that the client's <filename>~/.postgresql/root.crt</> lists the top-level CAs
7203+
Note that the client's <filename>~/.postgresql/root.crt</> lists the top-level CAs
72047204
that are considered trusted for signing server certificates. In principle it need
72057205
not list the CA that signed the client's certificate, though in most cases
72067206
that CA would also be trusted for server certificates.

doc/src/sgml/pgcrypto.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ hmac(data bytea, key text, type text) returns bytea
9595
</para>
9696

9797
<para>
98-
The algorithms in <function>crypt()</> differ from the usual
98+
The algorithms in <function>crypt()</> differ from the usual
9999
MD5 or SHA1 hashing algorithms in the following respects:
100100
</para>
101101

doc/src/sgml/pgprewarm.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pg_prewarm(regclass, mode text default 'buffer', fork text default 'main',
2525
<para>
2626
The first argument is the relation to be prewarmed. The second argument
2727
is the prewarming method to be used, as further discussed below; the third
28-
is the relation fork to be prewarmed, usually <literal>main</literal>.
28+
is the relation fork to be prewarmed, usually <literal>main</literal>.
2929
The fourth argument is the first block number to prewarm
3030
(<literal>NULL</literal> is accepted as a synonym for zero). The fifth
3131
argument is the last block number to prewarm (<literal>NULL</literal>

doc/src/sgml/plpgsql.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4726,7 +4726,7 @@ a_output := a_output || $$ if v_$$ || referrer_keys.kind || $$ like '$$
47264726

47274727
<para>
47284728
These additional checks are enabled through the configuration variables
4729-
<varname>plpgsql.extra_warnings</> for warnings and
4729+
<varname>plpgsql.extra_warnings</> for warnings and
47304730
<varname>plpgsql.extra_errors</> for errors. Both can be set either to
47314731
a comma-separated list of checks, <literal>"none"</> or <literal>"all"</>.
47324732
The default is <literal>"none"</>. Currently the list of available checks
@@ -4736,7 +4736,7 @@ a_output := a_output || $$ if v_$$ || referrer_keys.kind || $$ like '$$
47364736
<term><varname>shadowed_variables</varname></term>
47374737
<listitem>
47384738
<para>
4739-
Checks if a declaration shadows a previously defined variable.
4739+
Checks if a declaration shadows a previously defined variable.
47404740
</para>
47414741
</listitem>
47424742
</varlistentry>

doc/src/sgml/recovery-config.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows
157157
following parameters can be used to specify an earlier stopping point.
158158
At most one of <varname>recovery_target</>,
159159
<varname>recovery_target_name</>, <varname>recovery_target_time</>, or
160-
<varname>recovery_target_xid</> can be specified.
160+
<varname>recovery_target_xid</> can be specified.
161161
</para>
162162
<variablelist>
163163

doc/src/sgml/ref/alter_system.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ ALTER SYSTEM SET <replaceable class="PARAMETER">configuration_parameter</replace
3333
values to the <filename>postgresql.auto.conf</filename> file. With
3434
<literal>DEFAULT</literal>, it removes a configuration entry from
3535
<filename>postgresql.auto.conf</filename> file. The values will be
36-
effective after reload of server configuration (SIGHUP) or in next
36+
effective after reload of server configuration (SIGHUP) or in next
3737
server start based on the type of configuration parameter modified.
3838
</para>
3939

4040
<para>
4141
This command is not allowed inside transaction block or function.
4242
</para>
43-
43+
4444
<para>
45-
See <xref linkend="config-setting"> for other ways to set the parameters and
45+
See <xref linkend="config-setting"> for other ways to set the parameters and
4646
how they become effective.
4747
</para>
4848
</refsect1>

doc/src/sgml/ref/create_aggregate.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ SELECT col FROM tab ORDER BY col USING sortop LIMIT 1;
447447
<listitem>
448448
<para>
449449
The approximate average size (in bytes) of the aggregate's state
450-
value, when using moving-aggregate mode. This works the same as
450+
value, when using moving-aggregate mode. This works the same as
451451
<replaceable>state_data_size</>.
452452
</para>
453453
</listitem>

doc/src/sgml/ref/create_table.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
329329
</para>
330330
<para>
331331
Default expressions for the copied column definitions will only be
332-
copied if <literal>INCLUDING DEFAULTS</literal> is specified.
332+
copied if <literal>INCLUDING DEFAULTS</literal> is specified.
333333
Defaults that call database-modification functions, like
334334
<function>nextval</>, create a linkage between the original and
335335
new tables. The

doc/src/sgml/ref/pg_basebackup.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ PostgreSQL documentation
254254
<term><option>--xlogdir=<replaceable class="parameter">xlogdir</replaceable></option></term>
255255
<listitem>
256256
<para>
257-
Specifies the location for the transaction log directory.
257+
Specifies the location for the transaction log directory.
258258
<replaceable>xlogdir</replaceable> must be an absolute path.
259259
The transaction log directory can only be specified when
260260
the backup is in plain mode.

doc/src/sgml/ref/psql-ref.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ testdb=&gt;
951951
The command form <literal>\d+</literal> is identical, except that
952952
more information is displayed: any comments associated with the
953953
columns of the table are shown, as is the presence of OIDs in the
954-
table, the view definition if the relation is a view, a non-default
954+
table, the view definition if the relation is a view, a non-default
955955
<link linkend="SQL-CREATETABLE-REPLICA-IDENTITY">replica
956956
identity</link> setting.
957957
</para>

0 commit comments

Comments
 (0)