summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorChris Withers <chris@simplistix.co.uk>2013-06-10 13:24:02 +0100
committerChris Withers <chris@simplistix.co.uk>2013-06-10 13:24:02 +0100
commitb2da12e070e9d83bea5284dae11b8e6d4d509818 (patch)
tree2feac282d4b53875b0ddcc95b0b26768a7c668da /lib/sqlalchemy/dialects/postgresql/base.py
parentb2ea2eef5db160183cd4f812b0ce1636d8799b91 (diff)
downloadsqlalchemy-b2da12e070e9d83bea5284dae11b8e6d4d509818.tar.gz
Documentation for the new range type support.pr/5
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 4a6de0ceb..238a8af8f 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -426,7 +426,7 @@ class array(expression.Tuple):
An instance of :class:`.array` will always have the datatype
:class:`.ARRAY`. The "inner" type of the array is inferred from
- the values present, unless the "type_" keyword argument is passed::
+ the values present, unless the ``type_`` keyword argument is passed::
array(['foo', 'bar'], type_=CHAR)