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/array.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/sqlalchemy/dialects/postgresql/array.py') diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index fe62eb101..0ad457c59 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -46,7 +46,7 @@ def All(other, arrexpr, operator=operators.eq): class array(expression.Tuple): - """A Postgresql ARRAY literal. + """A PostgreSQL ARRAY literal. This is used to produce ARRAY literals in SQL expressions, e.g.:: @@ -116,7 +116,7 @@ OVERLAP = operators.custom_op("&&", precedence=5) class ARRAY(SchemaEventTarget, sqltypes.ARRAY): - """Postgresql ARRAY type. + """PostgreSQL ARRAY type. .. versionchanged:: 1.1 The :class:`.postgresql.ARRAY` type is now a subclass of the core :class:`.types.ARRAY` type. @@ -219,7 +219,7 @@ class ARRAY(SchemaEventTarget, sqltypes.ARRAY): they were declared. :param zero_indexes=False: when True, index values will be converted - between Python zero-based and Postgresql one-based indexes, e.g. + between Python zero-based and PostgreSQL one-based indexes, e.g. a value of one will be added to all index values before passing to the database. -- cgit v1.2.1