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 | 9436041ed848debb3d64fb5fbff6cdb35bc46d04 (patch) | |
tree | 1b5bca52989192d8e0ba896fd646838c7100ecd7 /src/backend/utils/adt/jsonpath_exec.c | |
parent | 80fc96eceb817d89cdd11c02c8ab913c8d060a3e (diff) | |
download | postgresql-9436041ed848debb3d64fb5fbff6cdb35bc46d04.tar.gz postgresql-9436041ed848debb3d64fb5fbff6cdb35bc46d04.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 2c0b362502f..0591c9effcb 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 |