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/adt/jsonpath_exec.c | |
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/adt/jsonpath_exec.c')
-rw-r--r-- | src/backend/utils/adt/jsonpath_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/jsonpath_exec.c b/src/backend/utils/adt/jsonpath_exec.c index 4d185c27b47..078aaef5392 100644 --- a/src/backend/utils/adt/jsonpath_exec.c +++ b/src/backend/utils/adt/jsonpath_exec.c @@ -263,7 +263,7 @@ static int compareDatetime(Datum val1, Oid typid1, Datum val2, Oid typid2, * implement @? and @@ operators, which in turn are intended to have an * index support. Thus, it's desirable to make it easier to achieve * consistency between index scan results and sequential scan results. - * So, we throw as less errors as possible. Regarding this function, + * So, we throw as few errors as possible. Regarding this function, * such behavior also matches behavior of JSON_EXISTS() clause of * SQL/JSON. Regarding jsonb_path_match(), this function doesn't have * an analogy in SQL/JSON, so we define its behavior on our own. |