diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-02-24 16:13:17 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-02-24 16:13:17 +0900 |
commit | bcf2667bf62d72faced64cb60ffbd2e599a0ebe8 (patch) | |
tree | 7f58ae5ad68ed50b11d2a5eeedced3b905a8634f /src/backend/utils/cache | |
parent | 8ec8fe0f31712c62b761da9ef6d32214e08340d1 (diff) | |
download | postgresql-bcf2667bf62d72faced64cb60ffbd2e599a0ebe8.tar.gz postgresql-bcf2667bf62d72faced64cb60ffbd2e599a0ebe8.zip |
Fix some typos, grammar and style in docs and comments
The portions fixing the documentation are backpatched where needed.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20210210235557.GQ20012@telsasoft.com
backpatch-through: 9.6
Diffstat (limited to 'src/backend/utils/cache')
-rw-r--r-- | src/backend/utils/cache/catcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/catcache.c b/src/backend/utils/cache/catcache.c index fa2b49c676e..55c94458981 100644 --- a/src/backend/utils/cache/catcache.c +++ b/src/backend/utils/cache/catcache.c @@ -1497,7 +1497,7 @@ GetCatCacheHashValue(CatCache *cache, * It doesn't make any sense to specify all of the cache's key columns * here: since the key is unique, there could be at most one match, so * you ought to use SearchCatCache() instead. Hence this function takes - * one less Datum argument than SearchCatCache() does. + * one fewer Datum argument than SearchCatCache() does. * * The caller must not modify the list object or the pointed-to tuples, * and must call ReleaseCatCacheList() when done with the list. |