diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-03-17 20:47:28 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-03-17 20:47:28 +0900 |
commit | 2bccced110025f48bf426a8a9d7f627ef3663fcd (patch) | |
tree | 9e4b89fd4dafd9d67768beb792dbf7435f308166 /src/backend/utils/adt/json.c | |
parent | 5c6d9fc4b2b8b6688a482a4b4116d7642e36b9d9 (diff) | |
download | postgresql-2bccced110025f48bf426a8a9d7f627ef3663fcd.tar.gz postgresql-2bccced110025f48bf426a8a9d7f627ef3663fcd.zip |
Fix typos in comments.
Thom Brown
Diffstat (limited to 'src/backend/utils/adt/json.c')
-rw-r--r-- | src/backend/utils/adt/json.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/json.c b/src/backend/utils/adt/json.c index f170661d721..97a0e9f211e 100644 --- a/src/backend/utils/adt/json.c +++ b/src/backend/utils/adt/json.c @@ -395,7 +395,7 @@ parse_object(JsonLexContext *lex, JsonSemAction *sem) (*ostart) (sem->semstate); /* - * Data inside an object at at a higher nesting level than the object + * Data inside an object is at a higher nesting level than the object * itself. Note that we increment this after we call the semantic routine * for the object start and restore it before we call the routine for the * object end. @@ -473,7 +473,7 @@ parse_array(JsonLexContext *lex, JsonSemAction *sem) (*astart) (sem->semstate); /* - * Data inside an array at at a higher nesting level than the array + * Data inside an array is at a higher nesting level than the array * itself. Note that we increment this after we call the semantic routine * for the array start and restore it before we call the routine for the * array end. |