aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2017-05-18 10:33:16 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2017-05-18 10:33:51 +0300
commit46498d227703f93508044511e40e7cb7d599d2a3 (patch)
tree83a0d5e4b4337d6e33f618c60ef51a45da25fc2c
parent49dfbb53cb8cadd985d49da02fbb64165bf69988 (diff)
downloadpostgresql-46498d227703f93508044511e40e7cb7d599d2a3.tar.gz
postgresql-46498d227703f93508044511e40e7cb7d599d2a3.zip
Fix typo in comment.
Daniel Gustafsson
-rw-r--r--src/backend/utils/adt/json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/json.c b/src/backend/utils/adt/json.c
index 987c566c36e..350c839775c 100644
--- a/src/backend/utils/adt/json.c
+++ b/src/backend/utils/adt/json.c
@@ -323,7 +323,7 @@ makeJsonLexContextCstringLen(char *json, int len, bool need_escapes)
* Publicly visible entry point for the JSON parser.
*
* lex is a lexing context, set up for the json to be processed by calling
- * makeJsonLexContext(). sem is a strucure of function pointers to semantic
+ * makeJsonLexContext(). sem is a structure of function pointers to semantic
* action routines to be called at appropriate spots during parsing, and a
* pointer to a state object to be passed to those routines.
*/