]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix cross reference
authorVraj Mohan <r.vrajmohan@gmail.com>
Thu, 14 Nov 2013 15:10:59 +0000 (10:10 -0500)
committerVraj Mohan <r.vrajmohan@gmail.com>
Thu, 14 Nov 2013 19:31:37 +0000 (14:31 -0500)
doc/build/core/event.rst
lib/sqlalchemy/inspection.py
lib/sqlalchemy/sql/elements.py

index d5111b0c0cdad2230f2dd89c6af7326b8b537e60..1b873972a77c6ba1b8d8a087020dbb96fd007098 100644 (file)
@@ -75,7 +75,7 @@ as long as the names match up::
         print("New DBAPI connection:", dbapi_connection)
         print("Connection record:", kw['connection_record'])
 
-Above, the presence of ``**kw`` tells :func:`.event.listen_for` that
+Above, the presence of ``**kw`` tells :func:`.listens_for` that
 arguments should be passed to the function by name, rather than positionally.
 
 .. versionadded:: 0.9.0 Added optional ``named`` argument dispatch to
index 42e08b30dfcaa3b09c42df6b173ae6a846933c75..865ec4af6c2f3dfa1ef9ee3114e0829c1d5e9134 100644 (file)
@@ -39,11 +39,11 @@ def inspect(subject, raiseerr=True):
 
     The returned value in some cases may be the
     same object as the one given, such as if a
-    :class:`.orm.Mapper` object is passed.   In other
+    :class:`.Mapper` object is passed.   In other
     cases, it will be an instance of the registered
     inspection type for the given object, such as
-    if a :class:`.engine.Engine` is passed, an
-    :class:`.engine.Inspector` object is returned.
+    if an :class:`.engine.Engine` is passed, an
+    :class:`.Inspector` object is returned.
 
     :param subject: the subject to be inspected.
     :param raiseerr: When ``True``, if the given subject
index e9b995eaac8343973548a735815470f6806d1437..5058b90e02126280a16621aca158960ebfb7e799 100644 (file)
@@ -361,7 +361,7 @@ class ClauseElement(Visitable):
         as well as by :func:`.select` constructs when placed into
         the FROM clause of another :func:`.select`.  (Note that
         subqueries should be normally created using the
-        :func:`.Select.alias` method, as many platforms require
+        :meth:`.Select.alias` method, as many platforms require
         nested SELECT statements to be named).
 
         As expressions are composed together, the application of