diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-05-18 10:33:16 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-05-18 10:33:46 +0300 |
commit | dbf71771befac89cd38df3cd03c15172836a0e13 (patch) | |
tree | d3fc28d2d0b67f09e147ebfcc9e0de3e4f1e1f7c /src/backend/utils/adt/json.c | |
parent | bee9e8698404da6cc6a1e6dd08c1b22e6ca1ca13 (diff) | |
download | postgresql-dbf71771befac89cd38df3cd03c15172836a0e13.tar.gz postgresql-dbf71771befac89cd38df3cd03c15172836a0e13.zip |
Fix typo in comment.
Daniel Gustafsson
Diffstat (limited to 'src/backend/utils/adt/json.c')
-rw-r--r-- | src/backend/utils/adt/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/json.c b/src/backend/utils/adt/json.c index f7044186035..c73044b806d 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. */ |