aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/basebackup.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-05-20 19:44:46 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-05-20 19:45:43 +0300
commitfa60fb63e511e7bbcf57ce972338711593a5e7c9 (patch)
treeb6dc30e0a552d635e1e7bc8ea4d7e5d8b916ae91 /src/backend/replication/basebackup.c
parent4fc72cc7bb9d2105261b8ee45558af50d788cd19 (diff)
downloadpostgresql-fa60fb63e511e7bbcf57ce972338711593a5e7c9.tar.gz
postgresql-fa60fb63e511e7bbcf57ce972338711593a5e7c9.zip
Fix more typos in comments.
Patch by CharSyam, plus a few more I spotted with grep.
Diffstat (limited to 'src/backend/replication/basebackup.c')
-rw-r--r--src/backend/replication/basebackup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c
index 89e8cf073a8..4c1460cb1c4 100644
--- a/src/backend/replication/basebackup.c
+++ b/src/backend/replication/basebackup.c
@@ -85,7 +85,7 @@ static char *statrelpath = NULL;
/* The actual number of bytes, transfer of which may cause sleep. */
static uint64 throttling_sample;
-/* Amount of data already transfered but not yet throttled. */
+/* Amount of data already transferred but not yet throttled. */
static int64 throttling_counter;
/* The minimum time required to transfer throttling_sample bytes. */
@@ -172,7 +172,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
/*
* The minimum amount of time for throttling_sample bytes to be
- * transfered.
+ * transferred.
*/
elapsed_min_unit = USECS_PER_SEC / THROTTLING_FREQUENCY;