diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-05-22 16:31:55 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-05-22 16:31:55 +0900 |
commit | 06db9cce22efeb2a2cffa69491dd576adb77b655 (patch) | |
tree | f8a6eddb565ca37e6d717913567cecbcc116172f /src/include/utils/jsonb.h | |
parent | 19a683f69f4bc630ee04f2938e13e46397eb7a2d (diff) | |
download | postgresql-06db9cce22efeb2a2cffa69491dd576adb77b655.tar.gz postgresql-06db9cce22efeb2a2cffa69491dd576adb77b655.zip |
Fix typo in comment.
Erik Rijkers
Diffstat (limited to 'src/include/utils/jsonb.h')
-rw-r--r-- | src/include/utils/jsonb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/jsonb.h b/src/include/utils/jsonb.h index add76280ba1..5f2594b11f8 100644 --- a/src/include/utils/jsonb.h +++ b/src/include/utils/jsonb.h @@ -93,7 +93,7 @@ typedef struct JsonbValue JsonbValue; * * The root node is an exception; it has no parent array or object that could * hold its JEntry. Hence, no JEntry header is stored for the root node. It - * is implicitly known that the the root node must be an array or an object, + * is implicitly known that the root node must be an array or an object, * so we can get away without the type indicator as long as we can distinguish * the two. For that purpose, both an array and an object begins with a uint32 * header field, which contains an JB_FOBJECT or JB_FARRAY flag. When a naked |