From 55ccdfc0273b32eac850b5cc170578b5306dff08 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 26 Mar 2024 12:46:48 +0200 Subject: [PATCH v9.heikki 7/9] Trivial comment fixes --- src/backend/storage/aio/streaming_read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/storage/aio/streaming_read.c b/src/backend/storage/aio/streaming_read.c index 82a2227d4d5..76ce9cef53e 100644 --- a/src/backend/storage/aio/streaming_read.c +++ b/src/backend/storage/aio/streaming_read.c @@ -48,7 +48,7 @@ * WaitReadBuffers() must be called before returning the buffer, and if so, * points to the relevant ReadBuffersOperation object. * - * For example, if the callback return block numbers 10, 42, 43, 60 in + * For example, if the callback returns block numbers 10, 42, 43, 44, 60 in * successive calls, then these data structures might appear as follows: * * buffers buf/data buf/io ios @@ -136,7 +136,7 @@ struct StreamingRead void *per_buffer_data; int16 *buffer_io_indexes; - /* Read operations that have been started by not waited for yet. */ + /* Read operations that have been started but not waited for yet. */ ReadBuffersOperation *ios; int16 next_io_index; -- 2.39.2