diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-03-15 17:57:17 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-03-15 17:57:17 -0300 |
commit | 755ebfa41786e6b6b482af435cba79d57548a5e7 (patch) | |
tree | 03111dfed9aa67b381d09337d265ebf29d995a76 | |
parent | b4ce97aa5f603e039ed40af6a208c6f585d1ba9e (diff) | |
download | postgresql-755ebfa41786e6b6b482af435cba79d57548a5e7.tar.gz postgresql-755ebfa41786e6b6b482af435cba79d57548a5e7.zip |
Fix typos in comments
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 735f4073a38..9899cbb6c75 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -3069,7 +3069,7 @@ XLogFileInit(XLogSegNo logsegno, bool *use_existent, bool use_lock) * * destsegno: identify segment to be created. * - * srcTLI, srclog, srcseg: identify segment to be copied (could be from + * srcTLI, srcsegno: identify segment to be copied (could be from * a different timeline) * * upto: how much of the source file to copy (the rest is filled with @@ -6977,7 +6977,7 @@ StartupXLOG(void) * EndOfLogTLI is the TLI in the filename of the XLOG segment containing * the end-of-log. It could be different from the timeline that EndOfLog * nominally belongs to, if there was a timeline switch in that segment, - * and we were reading the old wAL from a segment belonging to a higher + * and we were reading the old WAL from a segment belonging to a higher * timeline. */ EndOfLogTLI = xlogreader->readPageTLI; |