diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-12-24 17:05:49 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-12-24 17:05:49 +0900 |
commit | 90fbf7c57df601c7e0b43ae7cf71f0f69908a7cc (patch) | |
tree | 3802395b538dc9b051e7ea65d3bc452a3ee9c904 /src/backend/access/transam/xlog.c | |
parent | 6ecf488d91ceb93a8be907a24c5d8a90358534ed (diff) | |
download | postgresql-90fbf7c57df601c7e0b43ae7cf71f0f69908a7cc.tar.gz postgresql-90fbf7c57df601c7e0b43ae7cf71f0f69908a7cc.zip |
Fix typos and grammar in docs and comments
This fixes several areas of the documentation and some comments in
matters of style, grammar, or even format.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20201222041153.GK30237@telsasoft.com
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index b1e5d2dbffd..9867e1b4039 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -10418,7 +10418,7 @@ get_sync_bit(int method) * * Never use O_DIRECT in walreceiver process for similar reasons; the WAL * written by walreceiver is normally read by the startup process soon - * after its written. Also, walreceiver performs unaligned writes, which + * after it's written. Also, walreceiver performs unaligned writes, which * don't work with O_DIRECT, so it is required for correctness too. */ if (!XLogIsNeeded() && !AmWalReceiverProcess()) |