summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Perkins <khperkins@gmail.com>2016-07-03 13:59:47 +1000
committerGitHub <noreply@github.com>2016-07-03 13:59:47 +1000
commitae134738951aa6f1d5fd4dc6a4031d2c591bb92a (patch)
treec7ba581c624ef4f73a7e4cb44d258998b4b487cf
parent26c72fcd4ed18ed85175457353d129294adb4cfa (diff)
downloadsqlalchemy-pr/288.tar.gz
fixed typopr/288
-rw-r--r--doc/build/core/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst
index 15aab52e7..453152662 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::