diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2014-09-24 11:24:42 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2014-09-24 11:24:42 -0400 |
commit | b1a52872ae68ce7fe9558a75295200a0d10d1f56 (patch) | |
tree | ba09245f53c7c565800870d0824e7b6c834e674e | |
parent | 3694b4d7e1aa02f917f9d18c550fbb49b96efa83 (diff) | |
download | postgresql-b1a52872ae68ce7fe9558a75295200a0d10d1f56.tar.gz postgresql-b1a52872ae68ce7fe9558a75295200a0d10d1f56.zip |
Fix typos in descriptions of json_object functions.
-rw-r--r-- | src/include/catalog/pg_proc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index d30d21ad4bc..3ce9849abff 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -4228,9 +4228,9 @@ DESCR("build a json object from pairwise key/value inputs"); DATA(insert OID = 3201 ( json_build_object PGNSP PGUID 12 1 0 0 0 f f f f f f s 0 0 114 "" _null_ _null_ _null_ _null_ json_build_object_noargs _null_ _null_ _null_ )); DESCR("build an empty json object"); DATA(insert OID = 3202 ( json_object PGNSP PGUID 12 1 0 0 0 f f f f t f s 1 0 114 "1009" _null_ _null_ _null_ _null_ json_object _null_ _null_ _null_ )); -DESCR("map text arrayof key value pais to json object"); +DESCR("map text array of key value pairs to json object"); DATA(insert OID = 3203 ( json_object PGNSP PGUID 12 1 0 0 0 f f f f t f s 2 0 114 "1009 1009" _null_ _null_ _null_ _null_ json_object_two_arg _null_ _null_ _null_ )); -DESCR("map text arrayof key value pais to json object"); +DESCR("map text arrays of keys and values to json object"); DATA(insert OID = 3176 ( to_json PGNSP PGUID 12 1 0 0 0 f f f f t f s 1 0 114 "2283" _null_ _null_ _null_ _null_ to_json _null_ _null_ _null_ )); DESCR("map input to json"); |