]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
doc bug [ticket:278]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Aug 2006 20:16:19 +0000 (20:16 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Aug 2006 20:16:19 +0000 (20:16 +0000)
doc/build/content/dbengine.txt

index d8dec80c0f74e052aae1854b2bb53f64aaa5f398..a68b94de582aff6e0449f0067ca9745a7d35fbda 100644 (file)
@@ -167,7 +167,7 @@ Both `Connection` and `Engine` fulfill an interface known as `Connectable` which
 
 #### Implicit Connection Contexts {@name=context}
 
-An **implicit connection** refers to connections that are allocated by the `Engine` internally.  There are two general cases when this occurs:  when using the various `execute()` methods that are available off the `Engine` object itself, and when calling the `execute()` method on constructed SQL objects, which are described in [sqlconstruction](rel:sqlconstruction).
+An **implicit connection** refers to connections that are allocated by the `Engine` internally.  There are two general cases when this occurs:  when using the various `execute()` methods that are available off the `Engine` object itself, and when calling the `execute()` method on constructed SQL objects, which are described in [sql](rel:sql).
 
     {python title="Implicit Connection"}
     engine = create_engine('sqlite:///:memory:')