diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-09-21 12:43:42 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-09-21 12:43:42 -0400 |
commit | e62c5ea22c12f63d8d5ca3b228a458dfc10ae314 (patch) | |
tree | b197d6f78d3fe192e7427cba73613a1b61fd66af /src/backend/utils/adt/jsonpath_exec.c | |
parent | d83268ae10cdeb2aa88e32286e94a8a8f59653a0 (diff) | |
download | postgresql-e62c5ea22c12f63d8d5ca3b228a458dfc10ae314.tar.gz postgresql-e62c5ea22c12f63d8d5ca3b228a458dfc10ae314.zip |
Copy editing: fix a bunch of misspellings and poor wording.
99% of this is docs, but also a couple of comments. No code changes.
Justin Pryzby
Discussion: https://postgr.es/m/20200919175804.GE30557@telsasoft.com
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 a38f9da7941..fe03141b208 100644 --- a/src/backend/utils/adt/jsonpath_exec.c +++ b/src/backend/utils/adt/jsonpath_exec.c @@ -35,7 +35,7 @@ * executeItemOptUnwrapTarget() function have 'unwrap' argument, which indicates * whether unwrapping of array is needed. When unwrap == true, each of array * members is passed to executeItemOptUnwrapTarget() again but with unwrap == false - * in order to evade subsequent array unwrapping. + * in order to avoid subsequent array unwrapping. * * All boolean expressions (predicates) are evaluated by executeBoolItem() * function, which returns tri-state JsonPathBool. When error is occurred |