summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/expression.py
diff options
context:
space:
mode:
authorDiana Clarke <diana.joan.clarke@gmail.com>2012-12-05 23:19:24 -0500
committerDiana Clarke <diana.joan.clarke@gmail.com>2012-12-05 23:19:24 -0500
commit73f25332b96988c34c17e39ffbd4f96e0c4c1967 (patch)
tree4269ce87bc262b0b441a8db551dda3550b53750b /lib/sqlalchemy/sql/expression.py
parent850fb33094549849d48f5f181793aa9474c14e2d (diff)
downloadsqlalchemy-73f25332b96988c34c17e39ffbd4f96e0c4c1967.tar.gz
fixing broken links (see #2625)
Diffstat (limited to 'lib/sqlalchemy/sql/expression.py')
-rw-r--r--lib/sqlalchemy/sql/expression.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py
index aa912a0f6..fa59683f2 100644
--- a/lib/sqlalchemy/sql/expression.py
+++ b/lib/sqlalchemy/sql/expression.py
@@ -1866,10 +1866,10 @@ class ClauseElement(Visitable):
def compile(self, bind=None, dialect=None, **kw):
"""Compile this SQL expression.
- The return value is a :class:`~sqlalchemy.engine.Compiled` object.
+ The return value is a :class:`~.Compiled` object.
Calling ``str()`` or ``unicode()`` on the returned value will yield a
string representation of the result. The
- :class:`~sqlalchemy.engine.Compiled` object also can return a
+ :class:`~.Compiled` object also can return a
dictionary of bind parameter names and values
using the ``params`` accessor.