diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-12 16:37:07 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-12 16:37:07 +0000 |
| commit | 0d2189a9939596a818cdb85319fd4b048c2f1999 (patch) | |
| tree | 3e781a37b59a571ba0b13ddd492f8767833c9095 | |
| parent | cce281e05671c8b026470927e4e64784aa4ce2d6 (diff) | |
| download | sqlalchemy-0d2189a9939596a818cdb85319fd4b048c2f1999.tar.gz | |
typos
| -rw-r--r-- | doc/build/content/intro.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/content/intro.txt b/doc/build/content/intro.txt index b28e399ea..9ac8f9486 100644 --- a/doc/build/content/intro.txt +++ b/doc/build/content/intro.txt @@ -100,7 +100,7 @@ Or more commonly, just pull in the names you'll need: {python} from sqlalchemy import create_engine, MetaData, Table, Column, types - from sqlalchemy.orm import mapper, relation, backref, create_session() + from sqlalchemy.orm import mapper, relation, backref, create_session ### BoundMetaData is now MetaData {@name=metadata} @@ -118,7 +118,7 @@ The `BoundMetaData` name is removed. Now, you just use `MetaData`. Additionall Additionally, `DynamicMetaData` is now known as `ThreadLocalMetaData`. -### Some existing select() methods become genreative {@name=generative} +### Some existing select() methods become generative {@name=generative} The methods `correlate()`, `order_by()`, and `group_by()` on the `select()` construct now return a **new** select object, and do not change the original one. Additionally, the generative methods `where()`, `column()`, `distinct()`, and several others have been added: @@ -157,4 +157,4 @@ This mostly applies to SQL constructs where you pass a type in: func.now(type_=DateTime) -
\ No newline at end of file + |
