From: Heikki Linnakangas Date: Tue, 9 Dec 2025 23:06:03 +0000 (+0200) Subject: Fix typo in comment X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=bae9d2f892bc7733667fa68f416b5abd8dd2fc57;p=users%2Frhaas%2Fpostgres.git Fix typo in comment Author: Xuneng Zhou Reviewed-by: Chao Li Discussion: https://www.postgresql.org/message-id/CABPTF7V8CbOXGePqrad6EH3Om7DRhNiO3C0rQ-62UuT7RdU-GQ@mail.gmail.com --- diff --git a/src/backend/storage/aio/read_stream.c b/src/backend/storage/aio/read_stream.c index 031fde9f4c..f1b88d058e 100644 --- a/src/backend/storage/aio/read_stream.c +++ b/src/backend/storage/aio/read_stream.c @@ -283,7 +283,7 @@ read_stream_start_pending_read(ReadStream *stream) /* * Sequential: Issue advice until the preadv() calls have caught * up with the first advice issued for this sequential region, and - * then stay of the way of the kernel's own read-ahead. + * then stay out of the way of the kernel's own read-ahead. */ if (stream->seq_until_processed != InvalidBlockNumber) flags |= READ_BUFFERS_ISSUE_ADVICE;