1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-16 17:07:43 +03:00

Fix typos and some format mistakes in comments

Author: Justin Pryzby
Discussion: https://postgr.es/m/20200612023709.GC14879@telsasoft.com
This commit is contained in:
Michael Paquier
2020-06-12 21:05:10 +09:00
parent ffd2582297
commit aaf8c99050
5 changed files with 9 additions and 11 deletions

View File

@@ -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.
**********************/