aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-10-22 14:51:49 -0400
committerRobert Haas <rhaas@postgresql.org>2015-10-22 14:52:23 -0400
commit31ba62ce32940146b6c818e9bf30b2555797c43d (patch)
treed3c71f881352d4b623d101c7d628fe5b0d06f09e /src/backend/access
parent8f2977b3ec2fbb98ee36045d4e2be81ca4c293e0 (diff)
downloadpostgresql-31ba62ce32940146b6c818e9bf30b2555797c43d.tar.gz
postgresql-31ba62ce32940146b6c818e9bf30b2555797c43d.zip
Fix typos in comments.
CharSyam
Diffstat (limited to 'src/backend/access')
-rw-r--r--src/backend/access/transam/multixact.c2
-rw-r--r--src/backend/access/transam/parallel.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c
index 544765c98d8..9571d0760a1 100644
--- a/src/backend/access/transam/multixact.c
+++ b/src/backend/access/transam/multixact.c
@@ -1126,7 +1126,7 @@ GetNewMultiXactId(int nmembers, MultiXactOffset *offset)
/*
* To avoid swamping the postmaster with signals, we issue the autovac
* request only when crossing a segment boundary. With default
- * compilation settings that's rougly after 50k members. This still
+ * compilation settings that's roughly after 50k members. This still
* gives plenty of chances before we get into real trouble.
*/
if ((MXOffsetToMemberPage(nextOffset) / SLRU_PAGES_PER_SEGMENT) !=
diff --git a/src/backend/access/transam/parallel.c b/src/backend/access/transam/parallel.c
index 0085987f324..35a873de6ba 100644
--- a/src/backend/access/transam/parallel.c
+++ b/src/backend/access/transam/parallel.c
@@ -775,7 +775,7 @@ HandleParallelMessage(ParallelContext *pcxt, int i, StringInfo msg)
errctx.previous = pcxt->error_context_stack;
error_context_stack = &errctx;
- /* Parse ErrorReponse or NoticeResponse. */
+ /* Parse ErrorResponse or NoticeResponse. */
pq_parse_errornotice(msg, &edata);
/* Death of a worker isn't enough justification for suicide. */