diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 13:20:58 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 13:21:12 -0400 |
commit | 2da30fde12e312dd9ea7dfff41f50cee93fc0793 (patch) | |
tree | f75ea9ca3f258f164fb879e94387f2e87584cb98 | |
parent | 56fa40e7f3244f46a7525e5563c1188de359e5db (diff) | |
download | sqlalchemy-2da30fde12e312dd9ea7dfff41f50cee93fc0793.tar.gz |
fix typo
-rw-r--r-- | doc/build/dialects/postgresql.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/dialects/postgresql.rst b/doc/build/dialects/postgresql.rst index c466f0377..ab281db85 100644 --- a/doc/build/dialects/postgresql.rst +++ b/doc/build/dialects/postgresql.rst @@ -141,7 +141,7 @@ For example: from psycopg2.extras import DateTimeRange from sqlalchemy.dialects.postgresql import TSRANGE - + class RoomBooking(Base): __tablename__ = 'room_booking' @@ -150,8 +150,8 @@ For example: during = Column(TSRANGE()) booking = RoomBooking( - room=101, - during=DateTimeRange(datetime(2013, 3, 23), None + room=101, + during=DateTimeRange(datetime(2013, 3, 23), None) ) PostgreSQL Constraint Types |