From: Mike Bayer Date: Sat, 8 Jun 2013 23:48:10 +0000 (-0400) Subject: fix this example X-Git-Tag: rel_0_9_0b1~274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ca321155ad39465d4d16445d2798b1fb062de8d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix this example --- diff --git a/doc/build/changelog/migration_09.rst b/doc/build/changelog/migration_09.rst index e9c5f13b6a..cca910a31f 100644 --- a/doc/build/changelog/migration_09.rst +++ b/doc/build/changelog/migration_09.rst @@ -190,8 +190,8 @@ without any subqueries generated:: Company.employees.of_type(employee_alias) ).filter( or_( - Engineer.priamry_language == 'python', - Manager.golf_swing == 'fore' + Engineer.primary_language == 'python', + Manager.manager_name == 'dilbert' ) )