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

Commit 3ed249b

Browse files
committed
Fix "the the" typos.
Erik Rijkers
1 parent ab22b14 commit 3ed249b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/src/sgml/json.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
There are two JSON data types: <type>json</> and <type>jsonb</>.
2525
Both accept <emphasis>almost</emphasis> identical sets of values as
2626
input. The major practical difference is one of efficiency. The
27-
<type>json</> data type stores an exact copy of the the input text,
27+
<type>json</> data type stores an exact copy of the input text,
2828
which processing functions must continually reparse, while
2929
<type>jsonb</> data is stored in a decomposed binary format that
3030
makes it slightly less efficient to input due to added serialization

doc/src/sgml/logicaldecoding.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ CTRL-C
169169
</indexterm>
170170
<title>Logical Decoding</title>
171171
<para>
172-
Logical decoding is the the process of extracting all persistent changes
172+
Logical decoding is the process of extracting all persistent changes
173173
to a database's tables into a coherent, easy to understand format which
174174
can be interpreted without detailed knowledge of the database's internal
175175
state.

src/backend/access/transam/xlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ begin:;
10891089
* has progressed. There is a small fixed number of insertion locks,
10901090
* determined by the num_xloginsert_locks GUC. When an inserter crosses a
10911091
* page boundary, it updates the value stored in the lock to the how far it
1092-
* has inserted, to allow the the previous buffer to be flushed.
1092+
* has inserted, to allow the previous buffer to be flushed.
10931093
*
10941094
* Holding onto an insertion lock also protects RedoRecPtr and
10951095
* fullPageWrites from changing until the insertion is finished.

0 commit comments

Comments
 (0)