From 31d3df0f798db16394fd662e42206cdf768ded12 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 16 Apr 2020 15:21:40 -0700 Subject: [PATCH] Typo fix --- docs/python-api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python-api.rst b/docs/python-api.rst index 51f05fb..8a2ad23 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -115,7 +115,7 @@ You can filter rows by a WHERE clause using ``.rows_where(where, where_args)``:: ... print(row) {'id': 1, 'age': 4, 'name': 'Cleo'} -To specify an order, use the ``order_my=`` argument:: +To specify an order, use the ``order_by=`` argument:: >>> for row in db["dogs"].rows_where("age > 1", order_by="age"): ... print(row)