]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Corrected typo in Types docs.
authorMichael Trier <mtrier@gmail.com>
Tue, 28 Oct 2008 18:09:22 +0000 (18:09 +0000)
committerMichael Trier <mtrier@gmail.com>
Tue, 28 Oct 2008 18:09:22 +0000 (18:09 +0000)
doc/build/content/types.txt

index 64aafe8cd9933a33c37cde5aa44f9b22269a2e8c..a495979ac747abf4fa2ce9a01b1ad43488cabe80 100644 (file)
@@ -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.