aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/index/genam.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-04-19 11:32:30 +0900
committerMichael Paquier <michael@paquier.xyz>2021-04-19 11:32:30 +0900
commit7ef8b52cf079ef3ace4575f7b97c2d6f80463b4f (patch)
tree9dd7a216019831ea53951e4e08aff564b634dba8 /src/backend/access/index/genam.c
parentc731f9187b5fd7038b04ba60703d3cace1806366 (diff)
downloadpostgresql-7ef8b52cf079ef3ace4575f7b97c2d6f80463b4f.tar.gz
postgresql-7ef8b52cf079ef3ace4575f7b97c2d6f80463b4f.zip
Fix typos and grammar in comments and docs
Author: Justin Pryzby Discussion: https://postgr.es/m/20210416070310.GG3315@telsasoft.com
Diffstat (limited to 'src/backend/access/index/genam.c')
-rw-r--r--src/backend/access/index/genam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/index/genam.c b/src/backend/access/index/genam.c
index 1c3e937c615..0aa26b448b7 100644
--- a/src/backend/access/index/genam.c
+++ b/src/backend/access/index/genam.c
@@ -633,7 +633,7 @@ systable_endscan(SysScanDesc sysscan)
* Currently we do not support non-index-based scans here. (In principle
* we could do a heapscan and sort, but the uses are in places that
* probably don't need to still work with corrupted catalog indexes.)
- * For the moment, therefore, these functions are merely the thinnest of
+ * For the moment, therefore, these functions are merely the thinest of
* wrappers around index_beginscan/index_getnext_slot. The main reason for
* their existence is to centralize possible future support of lossy operators
* in catalog scans.