aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/jsonfuncs.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-09-11 11:20:47 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-09-11 11:21:27 -0400
commit821fb8cdbf700a8aadbe12d5b46ca4e61be5a8a8 (patch)
tree4f168da823a903d3d246f0141036618cc21f725c /src/backend/utils/adt/jsonfuncs.c
parent3c435952176ae5d294b37e5963cd72ddb66edead (diff)
downloadpostgresql-821fb8cdbf700a8aadbe12d5b46ca4e61be5a8a8.tar.gz
postgresql-821fb8cdbf700a8aadbe12d5b46ca4e61be5a8a8.zip
Message style fixes
Diffstat (limited to 'src/backend/utils/adt/jsonfuncs.c')
-rw-r--r--src/backend/utils/adt/jsonfuncs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/jsonfuncs.c b/src/backend/utils/adt/jsonfuncs.c
index 619547d6bf5..68feeb2c5b5 100644
--- a/src/backend/utils/adt/jsonfuncs.c
+++ b/src/backend/utils/adt/jsonfuncs.c
@@ -2314,7 +2314,7 @@ populate_array_report_expected_array(PopulateArrayContext *ctx, int ndim)
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("expected json array"),
- errhint("see the value of key \"%s\"", ctx->colname)));
+ errhint("See the value of key \"%s\".", ctx->colname)));
else
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
@@ -2336,13 +2336,13 @@ populate_array_report_expected_array(PopulateArrayContext *ctx, int ndim)
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("expected json array"),
- errhint("see the array element %s of key \"%s\"",
+ errhint("See the array element %s of key \"%s\".",
indices.data, ctx->colname)));
else
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("expected json array"),
- errhint("see the array element %s",
+ errhint("See the array element %s.",
indices.data)));
}
}