diff options
author | Ethan <elethan@gmail.com> | 2016-04-20 10:20:06 -0500 |
---|---|---|
committer | Ethan <elethan@gmail.com> | 2016-04-20 10:20:06 -0500 |
commit | fc68a7145d086de21005b4ccaa93847d4b889dba (patch) | |
tree | fe6141b22e5c1aac8bad8a271fcb183e0f003504 | |
parent | 41901a4242a065eabed4150e5021df9f1df8148a (diff) | |
download | sqlalchemy-pr/259.tar.gz |
Update tutorial.rstpr/259
Fix very minor typo
-rw-r--r-- | doc/build/orm/tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index bc25e566a..87e2794ae 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -950,7 +950,7 @@ method: (224, 'fred') {stop}<User(name='fred', fullname='Fred Flinstone', password='blah')> -To use an entirely string-based statement, using +To use an entirely string-based statement, use :meth:`~sqlalchemy.orm.query.Query.from_statement()`; just ensure that the columns clause of the statement contains the column names normally used by the mapper (below illustrated using an asterisk): |