summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-10-28 18:09:22 +0000
committerMichael Trier <mtrier@gmail.com>2008-10-28 18:09:22 +0000
commitaa6c4df3953e46639ef757cc7f29a9b699e4da13 (patch)
tree44fd5d81553bbc36dc1a5ae27dea7349f9fe71d5
parentd4dcb2e2176d33d9e7bbee7fe73d34290dbb503e (diff)
downloadsqlalchemy-aa6c4df3953e46639ef757cc7f29a9b699e4da13.tar.gz
Corrected typo in Types docs.
-rw-r--r--doc/build/content/types.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/content/types.txt b/doc/build/content/types.txt
index 64aafe8cd..a495979ac 100644
--- a/doc/build/content/types.txt
+++ b/doc/build/content/types.txt
@@ -43,7 +43,7 @@ Numeric types return `decimal.Decimal` objects by default. The flag `asdecimal=
Float types return Python floats. Float also takes a "precision" argument which is used when CREATE TABLE is issued.
-#### Datetime/Date/Time
+#### DateTime/Date/Time
Date and time types return objects from the Python `datetime` module. Most DBAPIs have built in support for the datetime module, with the noted exception of SQLite. In the case of SQLite, date and time types are stored as strings which are then converted back to datetime objects when rows are returned.