diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-09-08 16:48:51 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-09-08 16:48:51 +0200 |
commit | 7390b6421a98b70554b6b5edea5d6e012dfdbbba (patch) | |
tree | de46ab43e4756ce491bb629fcafa6d4eb563113d | |
parent | a3d2b1bbe904b0ca8d9fdde20f25295ff3e21f79 (diff) | |
download | postgresql-7390b6421a98b70554b6b5edea5d6e012dfdbbba.tar.gz postgresql-7390b6421a98b70554b6b5edea5d6e012dfdbbba.zip |
Fix typo
-rw-r--r-- | src/backend/utils/adt/jsonfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/jsonfuncs.c b/src/backend/utils/adt/jsonfuncs.c index 5fd54b64b56..6335845d08e 100644 --- a/src/backend/utils/adt/jsonfuncs.c +++ b/src/backend/utils/adt/jsonfuncs.c @@ -4922,7 +4922,7 @@ setPath(JsonbIterator **it, Datum *path_elems, case WJB_BEGIN_ARRAY: /* - * If instructed complain about attempts to replace whithin a raw + * If instructed complain about attempts to replace within a raw * scalar value. This happens even when current level is equal to * path_len, because the last path key should also correspond to * an object or an array, not raw scalar. @@ -4954,7 +4954,7 @@ setPath(JsonbIterator **it, Datum *path_elems, case WJB_VALUE: /* - * If instructed complain about attempts to replace whithin a + * If instructed complain about attempts to replace within a * scalar value. This happens even when current level is equal to * path_len, because the last path key should also correspond to * an object or an array, not an element or value. |