diff options
author | Denis Kataev <bteamko@gmail.com> | 2019-07-08 21:32:20 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 21:32:20 +0500 |
commit | 7b8ff3c335938532b70e6ffff212bd8f67c56add (patch) | |
tree | 99b52397bb26036571e744cf6c334b29290b857f /lib/sqlalchemy | |
parent | 502cd9240e639bd9334ac83111d22500506ca773 (diff) | |
download | sqlalchemy-7b8ff3c335938532b70e6ffff212bd8f67c56add.tar.gz |
Small text error in json field doc
Small fix json field doc
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r-- | lib/sqlalchemy/sql/sqltypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/sqltypes.py b/lib/sqlalchemy/sql/sqltypes.py index 6a520a2d5..f363a3ffd 100644 --- a/lib/sqlalchemy/sql/sqltypes.py +++ b/lib/sqlalchemy/sql/sqltypes.py @@ -1941,7 +1941,7 @@ class JSON(Indexable, TypeEngine): data = {"key1": "value1", "key2": "value2"} ) - The base :class:`.types.JSON` provides these two operations: + The base :class:`.types.JSON` provides these operations: * Keyed index operations:: |