aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2014-09-24 11:24:42 -0400
committerAndrew Dunstan <andrew@dunslane.net>2014-09-24 11:24:59 -0400
commit2c7946e4b8a623f7972fd87f8a1226e48f74ca7f (patch)
tree9719f2f51fbae502146ee92e5fa5493807d45fae /src
parent6eaf7e5bea958c93fda306c846997414184d2526 (diff)
downloadpostgresql-2c7946e4b8a623f7972fd87f8a1226e48f74ca7f.tar.gz
postgresql-2c7946e4b8a623f7972fd87f8a1226e48f74ca7f.zip
Fix typos in descriptions of json_object functions.
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_proc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index a3a86fbfe0c..1e9173a00d5 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -4218,9 +4218,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");