From 58396cef4501a2b619ade30b5057cb2013c1151f Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Thu, 29 Mar 2012 12:00:07 -0700 Subject: fix typo --- index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.rst b/index.rst index 527721f..c63f57f 100644 --- a/index.rst +++ b/index.rst @@ -220,7 +220,7 @@ Basic Usage If *item_sort_key* is a callable (not the default), then the output of dictionaries will be sorted with it. The callable will be used like this: - ``sorted(dct.items(), key=sort_item_key)``. This option takes precedence + ``sorted(dct.items(), key=item_sort_key)``. This option takes precedence over *sort_keys*. .. versionchanged:: 2.5.0 @@ -487,7 +487,7 @@ Encoders and decoders If *item_sort_key* is a callable (not the default), then the output of dictionaries will be sorted with it. The callable will be used like this: - ``sorted(dct.items(), key=sort_item_key)``. This option takes precedence + ``sorted(dct.items(), key=item_sort_key)``. This option takes precedence over *sort_keys*. .. versionchanged:: 2.5.0 -- cgit v1.2.1