From 47929324c522cecfa8e0f64c6833f1dc3a67a735 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 20 Mar 2025 10:44:12 +0100 Subject: [PATCH] Fix typo in comment --- src/backend/storage/file/buffile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/storage/file/buffile.c b/src/backend/storage/file/buffile.c index a4541b87b8f..366d70d38a1 100644 --- a/src/backend/storage/file/buffile.c +++ b/src/backend/storage/file/buffile.c @@ -97,7 +97,7 @@ struct BufFile int nbytes; /* total # of valid bytes in buffer */ /* - * XXX Should ideally us PGIOAlignedBlock, but might need a way to avoid + * XXX Should ideally use PGIOAlignedBlock, but might need a way to avoid * wasting per-file alignment padding when some users create many files. */ PGAlignedBlock buffer;