From 8c2c464cb8e1b40f90f544295afbf9a83b372eb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 7 Oct 2016 13:18:58 +0300 Subject: spelling: Postgresql -> PostgreSQL --- lib/sqlalchemy/dialects/postgresql/json.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/sqlalchemy/dialects/postgresql/json.py') diff --git a/lib/sqlalchemy/dialects/postgresql/json.py b/lib/sqlalchemy/dialects/postgresql/json.py index 821018471..8d09b46be 100644 --- a/lib/sqlalchemy/dialects/postgresql/json.py +++ b/lib/sqlalchemy/dialects/postgresql/json.py @@ -87,16 +87,16 @@ colspecs[sqltypes.JSON.JSONPathType] = JSONPathType class JSON(sqltypes.JSON): - """Represent the Postgresql JSON type. + """Represent the PostgreSQL JSON type. This type is a specialization of the Core-level :class:`.types.JSON` type. Be sure to read the documentation for :class:`.types.JSON` for important tips regarding treatment of NULL values and ORM use. - .. versionchanged:: 1.1 :class:`.postgresql.JSON` is now a Postgresql- + .. versionchanged:: 1.1 :class:`.postgresql.JSON` is now a PostgreSQL- specific specialization of the new :class:`.types.JSON` type. - The operators provided by the Postgresql version of :class:`.JSON` + The operators provided by the PostgreSQL version of :class:`.JSON` include: * Index operations (the ``->`` operator):: @@ -219,7 +219,7 @@ ischema_names['json'] = JSON class JSONB(JSON): - """Represent the Postgresql JSONB type. + """Represent the PostgreSQL JSONB type. The :class:`.JSONB` type stores arbitrary JSONB format data, e.g.:: -- cgit v1.2.1