aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_backup_archiver.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-06-12 21:05:10 +0900
committerMichael Paquier <michael@paquier.xyz>2020-06-12 21:05:10 +0900
commitaaf8c990502f7bb28c10f6bab1d23fe2f9f0b537 (patch)
treedfc9670fce438cb3fea0eefe98532facdf254ed0 /src/bin/pg_dump/pg_backup_archiver.c
parentffd2582297b86f640b60ba46097b70743f920d35 (diff)
downloadpostgresql-aaf8c990502f7bb28c10f6bab1d23fe2f9f0b537.tar.gz
postgresql-aaf8c990502f7bb28c10f6bab1d23fe2f9f0b537.zip
Fix typos and some format mistakes in comments
Author: Justin Pryzby Discussion: https://postgr.es/m/20200612023709.GC14879@telsasoft.com
Diffstat (limited to 'src/bin/pg_dump/pg_backup_archiver.c')
-rw-r--r--src/bin/pg_dump/pg_backup_archiver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c
index 8f0b32ca175..4c91b9e1bcc 100644
--- a/src/bin/pg_dump/pg_backup_archiver.c
+++ b/src/bin/pg_dump/pg_backup_archiver.c
@@ -209,14 +209,14 @@ dumpOptionsFromRestoreOptions(RestoreOptions *ropt)
/*
* Wrapper functions.
*
- * The objective it to make writing new formats and dumpers as simple
+ * The objective is to make writing new formats and dumpers as simple
* as possible, if necessary at the expense of extra function calls etc.
*
*/
/*
* The dump worker setup needs lots of knowledge of the internals of pg_dump,
- * so It's defined in pg_dump.c and passed into OpenArchive. The restore worker
+ * so it's defined in pg_dump.c and passed into OpenArchive. The restore worker
* setup doesn't need to know anything much, so it's defined here.
*/
static void
@@ -1450,7 +1450,7 @@ SortTocFromFile(Archive *AHX)
}
/**********************
- * 'Convenience functions that look like standard IO functions
+ * Convenience functions that look like standard IO functions
* for writing data when in dump mode.
**********************/