diff options
-rw-r--r-- | doc/build/core/tutorial.rst | 2 |
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:: |