diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-04-16 19:47:37 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-04-16 19:47:37 -0400 |
commit | c7d225e227aa481c30532b2954055afd1705af31 (patch) | |
tree | 742511c0834e5d47e5ab30ad0825aebf60f6161c /src/backend/access/transam/xlogutils.c | |
parent | a1888b59b511b42290a6fcfa87e35323d128c4f6 (diff) | |
download | postgresql-c7d225e227aa481c30532b2954055afd1705af31.tar.gz postgresql-c7d225e227aa481c30532b2954055afd1705af31.zip |
Fix typo in comment
Author: Masahiko Sawada <sawada.mshk@gmail.com>
Diffstat (limited to 'src/backend/access/transam/xlogutils.c')
-rw-r--r-- | src/backend/access/transam/xlogutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogutils.c b/src/backend/access/transam/xlogutils.c index 28c07d37c17..fb7f2e79746 100644 --- a/src/backend/access/transam/xlogutils.c +++ b/src/backend/access/transam/xlogutils.c @@ -780,7 +780,7 @@ XLogRead(char *buf, TimeLineID tli, XLogRecPtr startptr, Size count) * * We can't just check the timeline when we read a page on a different segment * to the last page. We could've received a timeline switch from a cascading - * upstream, so the current segment ends apruptly (possibly getting renamed to + * upstream, so the current segment ends abruptly (possibly getting renamed to * .partial) and we have to switch to a new one. Even in the middle of reading * a page we could have to dump the cached page and switch to a new TLI. * |