aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2019-01-23 13:39:00 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2019-01-23 13:43:41 +0200
commit0359d832128485840bd7dcf0b09646ad752f6a72 (patch)
treed7478c397ed86988df2636b999b00c9e4053dda1 /src/backend/access
parent77002ad375a8ca6b7587560208303cf2555d62bb (diff)
downloadpostgresql-0359d832128485840bd7dcf0b09646ad752f6a72.tar.gz
postgresql-0359d832128485840bd7dcf0b09646ad752f6a72.zip
Fix misc typos in comments.
Spotted mostly by Fabien Coelho. Discussion: https://www.postgresql.org/message-id/alpine.DEB.2.21.1901230947050.16643@lancre
Diffstat (limited to 'src/backend/access')
-rw-r--r--src/backend/access/gin/ginget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/gin/ginget.c b/src/backend/access/gin/ginget.c
index 6bfe18c359f..b9de54a717e 100644
--- a/src/backend/access/gin/ginget.c
+++ b/src/backend/access/gin/ginget.c
@@ -442,7 +442,7 @@ restartScanEntry:
/*
* Lock the entry leaf page. This is more coarse-grained than
* necessary, because it will conflict with any insertions that
- * land on the same leaf page, not only the exacty key we searched
+ * land on the same leaf page, not only the exact key we searched
* for. But locking an individual tuple would require updating
* that lock whenever it moves because of insertions or vacuums,
* which seems too complicated.