]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fixed 'column_literal' to 'literal_column' [ticket:626]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Jul 2007 03:09:49 +0000 (03:09 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Jul 2007 03:09:49 +0000 (03:09 +0000)
lib/sqlalchemy/sql.py

index 0cc7d11ed23c146a310d118e90dfe7efbbfe3afe..e09dcca8dcdd487d09f88ed2b50fe47638c0501b 100644 (file)
@@ -2615,7 +2615,7 @@ class _ColumnClause(ColumnElement):
     statements, but also any arbitrary text.  May or may not be bound 
     to an underlying ``Selectable``.  ``_ColumnClause`` is usually
     created publically via the ``column()`` function or the 
-    ``column_literal()`` function.
+    ``literal_column()`` function.
     
       text
         the text of the element.
@@ -2635,7 +2635,7 @@ class _ColumnClause(ColumnElement):
       is_literal
         if True, the ``_ColumnClause`` is assumed to be an exact expression
         that will be delivered to the output with no quoting rules applied
-        regardless of case sensitive settings.  the ``column_literal()`` function is
+        regardless of case sensitive settings.  the ``literal_column()`` function is
         usually used to create such a ``_ColumnClause``.
     
     """