diff options
author | Bruce Momjian <bruce@momjian.us> | 2018-03-29 15:18:53 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2018-03-29 15:18:53 -0400 |
commit | 20b4323bd107920a3c3e60452442e8e2cee302d2 (patch) | |
tree | f1536ef784d5432263fb8b537ada80c35c408318 /src/backend/access/gin | |
parent | 3282c4c136e4e5ad22d57dbe7a98fbac2962500a (diff) | |
download | postgresql-20b4323bd107920a3c3e60452442e8e2cee302d2.tar.gz postgresql-20b4323bd107920a3c3e60452442e8e2cee302d2.zip |
C comments: "a" <--> "an" corrections
Reported-by: Michael Paquier, Abhijit Menon-Sen
Discussion: https://postgr.es/m/20180305045854.GB2266@paquier.xyz
Author: Michael Paquier, Abhijit Menon-Sen, me
Diffstat (limited to 'src/backend/access/gin')
-rw-r--r-- | src/backend/access/gin/ginvacuum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/gin/ginvacuum.c b/src/backend/access/gin/ginvacuum.c index 398532d80ba..630d6a7788c 100644 --- a/src/backend/access/gin/ginvacuum.c +++ b/src/backend/access/gin/ginvacuum.c @@ -381,7 +381,7 @@ ginVacuumPostingTreeLeaves(GinVacuumState *gvs, BlockNumber blkno, bool isRoot) /* * All subtree is empty - just return true to indicate that parent - * must do a cleanup. Unless we are ROOT an there is way to go upper. + * must do a cleanup, unless we are ROOT and there is way to go upper. */ if (hasEmptyChild && !hasNonEmptyChild && !isRoot) |