From: Kristian Perkins Date: Sun, 3 Jul 2016 03:59:47 +0000 (+1000) Subject: fixed typo X-Git-Tag: rel_1_1_0b3~22^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae134738951aa6f1d5fd4dc6a4031d2c591bb92a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixed typo --- diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index 15aab52e74..4531526629 100644 --- a/doc/build/core/tutorial.rst +++ b/doc/build/core/tutorial.rst @@ -1426,7 +1426,7 @@ OVER clause, using the :meth:`.FunctionElement.over` method:: SELECT users.id, row_number() OVER (ORDER BY users.name) AS anon_1 FROM users -:meth:`.FunctionElement.over` also supports range specifciation using +:meth:`.FunctionElement.over` also supports range specification using either the :paramref:`.expression.over.rows` or :paramref:`.expression.over.range` parameters::