diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2021-10-04 15:12:57 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2021-10-04 15:12:57 +0200 |
commit | 7111e332c57ddb562d0ce26a4e08761a0baafb65 (patch) | |
tree | 4e475af00c04712bdd31bd8e5ac7781da983f9fd /src/backend/commands/copyfromparse.c | |
parent | e9bc0441f1446f6614fa6712841acec91890e089 (diff) | |
download | postgresql-7111e332c57ddb562d0ce26a4e08761a0baafb65.tar.gz postgresql-7111e332c57ddb562d0ce26a4e08761a0baafb65.zip |
Fix duplicate words in comments
Remove accidentally duplicated words in code comments.
Author: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Discussion: https://postgr.es/m/87bl45t0co.fsf@wibble.ilmari.org
Diffstat (limited to 'src/backend/commands/copyfromparse.c')
-rw-r--r-- | src/backend/commands/copyfromparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/copyfromparse.c b/src/backend/commands/copyfromparse.c index fdf57f15560..aac10165ecf 100644 --- a/src/backend/commands/copyfromparse.c +++ b/src/backend/commands/copyfromparse.c @@ -37,7 +37,7 @@ * the data is valid in the current encoding. * * In binary mode, the pipeline is much simpler. Input is loaded into - * into 'raw_buf', and encoding conversion is done in the datatype-specific + * 'raw_buf', and encoding conversion is done in the datatype-specific * receive functions, if required. 'input_buf' and 'line_buf' are not used, * but 'attribute_buf' is used as a temporary buffer to hold one attribute's * data when it's passed the receive function. |