diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-05-19 15:57:38 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-05-19 16:13:16 +0200 |
commit | 803b4a26ca3fdddbb6e3ce87a23bfbcc8a8669f3 (patch) | |
tree | 173fa82e785dbbaf1af6c04b19ee3a8da9118dad /src | |
parent | 6ff33cdbabdf770ca9d6b417c0687c04b2cd4d36 (diff) | |
download | postgresql-803b4a26ca3fdddbb6e3ce87a23bfbcc8a8669f3.tar.gz postgresql-803b4a26ca3fdddbb6e3ce87a23bfbcc8a8669f3.zip |
Remove stray mid-sentence tabs in comments
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/nodeIncrementalSort.c | 2 | ||||
-rw-r--r-- | src/backend/libpq/be-secure-openssl.c | 2 | ||||
-rw-r--r-- | src/backend/storage/smgr/smgr.c | 2 | ||||
-rw-r--r-- | src/backend/tsearch/ts_parse.c | 2 | ||||
-rw-r--r-- | src/include/common/jsonapi.h | 2 | ||||
-rw-r--r-- | src/include/port/win32_port.h | 2 | ||||
-rw-r--r-- | src/interfaces/ecpg/pgtypeslib/timestamp.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/executor/nodeIncrementalSort.c b/src/backend/executor/nodeIncrementalSort.c index 12bc22f33c6..26ceafec5f8 100644 --- a/src/backend/executor/nodeIncrementalSort.c +++ b/src/backend/executor/nodeIncrementalSort.c @@ -69,7 +69,7 @@ * the entire result set is available. * * The hybrid mode approach allows us to optimize for both very small - * groups (where the overhead of a new tuplesort is high) and very large + * groups (where the overhead of a new tuplesort is high) and very large * groups (where we can lower cost by not having to sort on already sorted * columns), albeit at some extra cost while switching between modes. * diff --git a/src/backend/libpq/be-secure-openssl.c b/src/backend/libpq/be-secure-openssl.c index 685aa2ed69d..dc4153a2f2e 100644 --- a/src/backend/libpq/be-secure-openssl.c +++ b/src/backend/libpq/be-secure-openssl.c @@ -1025,7 +1025,7 @@ load_dh_file(char *filename, bool isServerStart) * Load hardcoded DH parameters. * * If DH parameters cannot be loaded from a specified file, we can load - * the hardcoded DH parameters supplied with the backend to prevent + * the hardcoded DH parameters supplied with the backend to prevent * problems. */ static DH * diff --git a/src/backend/storage/smgr/smgr.c b/src/backend/storage/smgr/smgr.c index 8a11090944a..f76c4605dbb 100644 --- a/src/backend/storage/smgr/smgr.c +++ b/src/backend/storage/smgr/smgr.c @@ -540,7 +540,7 @@ smgrzeroextend(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum, * smgrprefetch() -- Initiate asynchronous read of the specified block of a relation. * * In recovery only, this can return false to indicate that a file - * doesn't exist (presumably it has been dropped by a later WAL + * doesn't exist (presumably it has been dropped by a later WAL * record). */ bool diff --git a/src/backend/tsearch/ts_parse.c b/src/backend/tsearch/ts_parse.c index 25d98527786..c347129009e 100644 --- a/src/backend/tsearch/ts_parse.c +++ b/src/backend/tsearch/ts_parse.c @@ -50,7 +50,7 @@ typedef struct /* * fields to store last variant to lexize (basically, thesaurus or similar - * to, which wants several lexemes + * to, which wants several lexemes */ ParsedLex *lastRes; diff --git a/src/include/common/jsonapi.h b/src/include/common/jsonapi.h index b583f459261..4310084b2bd 100644 --- a/src/include/common/jsonapi.h +++ b/src/include/common/jsonapi.h @@ -126,7 +126,7 @@ typedef struct JsonSemAction /* * pg_parse_json will parse the string in the lex calling the * action functions in sem at the appropriate points. It is - * up to them to keep what state they need in semstate. If they + * up to them to keep what state they need in semstate. If they * need access to the state of the lexer, then its pointer * should be passed to them as a member of whatever semstate * points to. If the action pointers are NULL the parser diff --git a/src/include/port/win32_port.h b/src/include/port/win32_port.h index 58965e0dfd7..b957d5c5981 100644 --- a/src/include/port/win32_port.h +++ b/src/include/port/win32_port.h @@ -147,7 +147,7 @@ * https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/596a1078-e883-4972-9bbc-49e60bebca55 * * The comprehensive exception list is included in ntstatus.h from the - * Windows Driver Kit (WDK). A subset of the list is also included in + * Windows Driver Kit (WDK). A subset of the list is also included in * winnt.h from the Windows SDK. Defining WIN32_NO_STATUS before including * windows.h helps to avoid any conflicts. * diff --git a/src/interfaces/ecpg/pgtypeslib/timestamp.c b/src/interfaces/ecpg/pgtypeslib/timestamp.c index 54cc04addd2..6185fc18957 100644 --- a/src/interfaces/ecpg/pgtypeslib/timestamp.c +++ b/src/interfaces/ecpg/pgtypeslib/timestamp.c @@ -346,7 +346,7 @@ dttofmtasc_replace(timestamp * ts, date dDate, int dow, struct tm *tm, break; /* - * The preferred date and time representation for + * The preferred date and time representation for * the current locale. */ case 'c': |